C/C++如何判断用户输入是否合法?
大家讲道理
大家讲道理 2017-04-17 11:34:21
0
2
527
int a;
scanf("%d",&a);
cin>>a;

ex:我想让用户输入整数,但是如果用户输入的不是我想要的类型如!%$#,abcd....都有什么方法或者函数去判断呢?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

répondre à tous(2)
大家讲道理

scanf的返回值是正常读取量的数目,所以只要判断返回值即可。

if(scanf("%d", &a) == 1) 
    printf("OK!");
else
    printf("Failed to read an integer.");

scanf比较大的一个坑是其遇到无效字符会停止扫描并将无效字符留在缓冲区中,所以会一直检测到失败,进入死循环。遇到这种问题,可以使用如下方案解决:

int a;
while(1 != scanf("%d", &a)) {
    fflush(stdin);    // 刷新缓冲区
    cout << "Invalid input! Please check and input again: ";
}
cout << "a = " << a << endl;
cout << "Test finished!";
return 0;

当然,这也并非一个好的选择,最好是避免在这种情况下使用scanf,可以先按照字符串进行读取,然后检查字符串合法性,使用一些库函数(如sscanfisdigitatoi等等)将字符串转化为整数。

PHPzhong

我记得大一做过类似的题目,当时都是用正则表达式判断的。

string str;
cin >> str;
const regex re("\\d+");
if(!regex_match(str, re))
  //....
else
  int num = stoi(str);
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!