我正在尝试if else
发表声明,但每次输入代码时都会出现错误。其中一个说IF was not declared in this scope
,我不知道如何声明它和这一切。它还说}
在我的 else 声明之前没有,但显然有;请帮忙。
这是代码:
#include <iostream>
#include <string>
using namespace std;
int main() {
string UserInput;
cin >> UserInput;
int x;
x = 1;
If (UserInput = x);
{
cout << "Type A Word and Press enter";
}
else
{
Cout << "NOT A USESBLE NUMBER";
}
cin.clear();
cin.ignore(255, '\n');
cin.get();
return 0;
}