do{
cout << "your number"; cin >> z;
if (z > 4){
cout << "invalid answer" << endl;}
else if (z == 4){
cout << " no" << endl;}
else {
cout <<"great!" << endl; }
} while (z != 3, 2, 1);
}
在我看来,它是:提出“你的号码”直到 z 为 3 或 2 或 1?怎么了?'