0

私は「豚ラテン」プログラムを書いています。ユーザーからの入力 (名と姓) を読み取り、入力を小文字にし、名前の内容に応じて名前を変更します。(名前と姓の両方の) 最初の文字が母音の場合、その末尾に「way」を追加する必要があります。

最初の文字が子音の場合、最初の文字を文字列の末尾に移動し、末尾に「ay」を追加します。

文字列の末尾にテキストを追加しようとすると、コードでエラーが発生します。文字列を文字に変換できないと表示されていますが、それが何を意味するのか正確にはわかりません。また、以前に使用したことがありますが、出力オペランド << を文字列に使用できないとも書かれています。

エラーは、「strcpy」と、名前を出力する最終コードで発生します。

37 : エラー:引数'std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >'をに変換できません'char*''1''char* strcpy(char*, const char*)'

47 : エラー:引数'std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >'をに変換できません'char*''1''char* strcpy(char*, const char*)'

54 : エラー: 'operator<<'in に一致しません'std::cout << first'

エラーを修正し、どこが間違っていたのかを確認するための助けが必要です。完全なコードが含まれています。

#include <iostream>
#include <vector>
#include <cstring>
#include <string>
using namespace std;
int main()
{
    int q, s;
    char shea[] = "way";
    char gavin_stop_looking_at_ponies[] = "ay";
    vector <string> first;
    vector <string> last;
    cout << "Please enter your first name." << endl;
    for (int i = 0; i < first.size(); i++)
    {
        getline (cin, first[i]);
        string nfirst = first[i];
        while (nfirst[q])
        {
            nfirst[q] = tolower(nfirst[q]);
        }
        first[i] = nfirst;
    }
    cout << "Please enter your last name." << endl;
    for (int j = 0; j < last.size(); j++)
    {
        getline (cin, last[j]);
        string nlast = last[j];
        while (nlast[s])
        {
            nlast[s] = tolower(nlast[s]);
        }
        last[j] = nlast;
        }
    if ( (first[0] == "a") ||( first [0] == "e") || (first [0] == "i") || (first [0] == "o")     || (first [0] == "u"))
    {
        strcpy (first, "way");
    }
    else
    {
        first[first.size()] = first[0] + "ay";
    }
    
    if ( (last[0] == "a") ||( last [0] == "e") || (last [0] == "i") || (last [0] == "o") || (last [0] == "u"))
    {
        strcpy (last, "way");
    }
    else
    {
        last[last.size()] = last[0] + "ay";
    }
    cout << first << last << endl;
    return 0;
}
4

4 に答える 4

1

firstではvector<string>なく、stringです。 ではサポートしてvectorいません。それぞれを に出力したい場合は、 を反復処理して、一度に 1 文字ずつ出力してみてください。<<coutstd::stringstd::vectorstd::vector

同様に、firstは でありvector<string>、暗黙的に に変換することはできませんchar*。 データstrcpyの未加工のブロックで動作しますが、これは遠く離れています。 これは、文字列バッファーに対する C レベルの操作用です (その場合でも、使用するのは危険です)。charfirststrcpy

first[first.size()] = first[0] + "ay";の最後の要素の 1 つ前にアクセスしているため、未定義の動作ですfirst。これは無効なメモリです。の奥に何かを押し込みたい場合はfirst、 を試してくださいfirst.push_back( first[0] + "ay" );

おそらく、 と a の違いについて混乱しているstd::stringでしょcharchar*。これらはまったく別のものです。 std::stringのマネージ バッファですcharchar単一の 8 ビット値であり、'a'(タイプはchar) のようなリテラルを格納するためによく使用されます。 char*単一の へのポインターであり、密にパックされcharたアンマネージ バッファーの先頭へのポインターとしてよく使用されます。char

あなたstd::vector<std::string>は管理されたバッファの管理されたcharバッファです。の各要素は、単一の ではなく、vector不明な数の の完全なバッファです。charchar

于 2013-04-04T19:30:24.967 に答える
0

ちょっと遊んでみようと思い、コードを書いてみました。これが私が思いついたものです-かなり単純化され、きれいで、理解しやすいと思います:

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* simple pig-latin program ... converts a given "first name" and "last name"*/
/* from the user to pig latin translations.  Obviously, the so-called names  */
/* are really just any 2 random words, but that's the theme anyway.          */
/*                                                                           */
/*                                                                           */
/*                                                                           */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


string xlat_to_piglatin(const string source)
{
    string result;

    //
    // translation: if word begins with a vowel, simply append "way" to
    //  it.  Otherwise, move the initial consonant from the beginning to
    //  the end, and append "ay" to it.
    //
    if (source.find_first_of("aeiou") == 0) {
        result = source;
        result.append("way");
    } else {
        result = source.substr(1, source.size());
        result.append(source.substr(0, 1));
        result.append("ay");
    }
    return result;
}

int main()
{
    string  first;
    string  last;

    //
    // get the first and last names from the user on standard in ...
    //
    cout << "Please enter your first name:" << endl;
    cin >> first;
    cout << "Please enter your last name:" << endl;
    cin >> last;

    //
    // convert strings to lower case ...
    //
    transform(first.begin(), first.end(), first.begin(), ptr_fun<int, int>(tolower));
    transform(last.begin(), last.end(), last.begin(), ptr_fun<int, int>(tolower));

    cout << xlat_to_piglatin(first) << " " << xlat_to_piglatin(last) << endl;
    return 0;
}
于 2013-04-09T12:29:29.370 に答える