1

ここに私のプログラムがあります。

#include <iostream>
#include <string>
using namespace std;
int main()
{
string input;
cout << "say yes or no" << endl;
cin >> input;
if(input == Yes)
{
    cout << "test" << endl;
}
else if(input == No)
{
    cout << "test123" << endl;
}
system("pause");
}

Yes と No は定義されていません。私がC ++を初めて使用するのを手伝ってください

4

2 に答える 2

1

文字列 "Yes" "No" には doubleQuotes を使用する必要があります

于 2013-06-06T15:44:06.493 に答える