c++:如果a要求输入一个数,我在输入时随意输入了一个字母之类的,怎样让程序输出指定的错误提示

2024-10-29 04:16:31
推荐回答(1个)
回答1:

c++ cin 返回为假 就是输入错。 返回真,输入正确。
#include
using namespace std;
#include
int main()
{
int x=0;
Loop:
cout << endl << "Enter an integer" << endl;
if (cin >> x){
cout << "The value is " << x << endl;
}
else {
cout << "You made a mistake" << endl; //executes
cin.clear();
cin.ignore();
goto Loop;
}
system("pause");
return 0;
}
----
c 语言 n=scanf("%d %d", &a,&b); 返回值 n 等于 输入正确的 数的 个数,
这句,输对2个参数,返回2,输对 1个 返回 1,全输错,返回 0。