先看看我的代码:
#include <iostream>
#include <ctype.h>
using namespace std;
int main()
{
int a,b;
cout << "Enter two digits" << endl;
cin >> a >> b;
if (isdigit(a))
if (isdigit(b))
cout << a+b << endl;
else
cout << "Invalid Digit";
return 0;
}
所以当我们输入一些东西时,只输出空格。我想要做的是打印用户是否点击非数字或任何 Alpha 程序应该显示无效字符串,或者如果用户点击任何数字,它必须显示两位数字的总和