該行if(!(cin.good()))cout < <「無字母」< < endl;如果我輸入字母不斷重複不停,但其他工作正常。無法說明原因。C++ cout不斷重複
#include <iostream>
#include <cstdlib>
#include <time.h>
#include <cstdio>
using namespace std;
int main()
{
int x;
cout << "Please enter a number\n";
srand(time(0));
int y = rand();
while (x != y)
{
cin >> x;
if (!(cin.good()))
cout << "No letters" << endl;
else if (x < y)
cout << "Go higher" << endl;
else if (x > y)
cout << "Go lower" << endl;
else
cout << "You win!!" << endl;
}
cin.get();
getchar();
return 0;
}
現在它說錯誤:'else'沒有以前的'if' – Foxic 2012-04-19 00:03:51
@ 30trix那麼你還有其他類型的錯字。可能忘記了最後的大括號?或者完全省略括號? – 2012-04-19 00:05:07