如果語句以這種方式工作嗎?這是一個「猜數字」遊戲。第一個如果說更高/更低,第二個如果說你是在50,100或100+範圍內。if條件下的編譯錯誤
兩者都應該同時工作,但我得到一個錯誤。
37行之前的意外主表達式| |」令牌,第38行 預計';' '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())) //1st if
{
cout << "No letters noob" << endl;
cin.clear();
cin.sync();
}
else if (x < y)
cout << "Go higher" << endl;
else if (x > y)
cout << "Go lower" << endl;
else
cout << "You win!!" << endl;
}
{
if (y - x - 50 <= 0) || (x - y - 50 <= 0) //2nd if
cout << "within 50 range" << endl;
else if (y - x - 100 <= 0) || (x - y - 100 <= 0)
cout << "within 100 range" << endl;
else
cout << "100+ value away" << endl;
}
}
cin.get();
getchar();
return 0;
}
我也在做代碼太複雜,或者這是可讀的嗎? – Foxic 2012-04-27 04:15:01
你有額外的大括號,其中不明確的點和一些關鍵丟失的括號。 – geekosaur 2012-04-27 04:15:42
你有什麼錯誤? – iammilind 2012-04-27 04:15:43