我是编程的初学者(特别是 C++)。我试图检查传入的字母符号。我只需要“捕捉”从 0 到 9 的数字。所以,我尝试使用它:
// Checking "a". If "a" is a letter, the error must be printed;
if (a!='%d') {
cout << "pfff! U cant use letters!" << endl;
return -1;
}
// The end of checking;
但它不起作用。我想我不能在 C++ 中使用 '%d' 。我怎么说:“检查所有符号并停止程序,如果有非数字。”
PS对不起我的英语。我希望你得到我。