私はELIZA(オンラインセラピスト)の簡単な質問と回答に類似した基本的なプログラムを書いていますが、最後には固執しています。 after cin >>答え。私は何も書くことができません。誰でも助けてくれれば大いに感謝します!また、私と一緒に裸で、私はプログラミングに新しいです。 「答え」という名前のC++はcin >> answerの後に入力できません。
int main() {
short number;
string color;
string sport;
int answer;
string travel;
// Greets user
cout << "Hello, I'm Samantha" << endl;
// Asks user for their favorite sport
cout << "What's your favorite sport?";
cin >> sport;
cout << "I like " << sport << " too!" << endl;
cout << "How about your favorite color?";
cin >> color;
cout << "Not my favorite color but it's nice!" << endl;
cout << "Tell me something you've never told anyone before";
cin >> answer;
cout << "Don't worry, your secret is safe with me!" << endl;
cout << "Hows your life going?";
cin >> answer;
return 0;
}
あなたのプログラムは 'cin >> answer'の後に終了します...あなたは何をする予定ですか? –
プログラムのデバッグ中に何を観察しましたか? – Fureeish
_「あなたが以前に誰にも言わなかったことがある」という意味は、「_」が数字であることを意味しましたか? – Chad