gpt4 book ai didi

c - 如何处理标准输入错误状态?

转载 作者:太空宇宙 更新时间:2023-11-04 02:59:18 25 4
gpt4 key购买 nike

#define MAGIC_NUMBER //place your favourite integer here 
#include <stdlib.h>
#include <stdio.h>

int main()
{
int input,i;
for(int i=0;i<100;i++)
{
scanf("%d",&input);
if(input== MAGIC_NUMBER)
printf("%d ",input);
else
printf("Invalid value\n");
}
system("pause");
return 0;
}

当输入非整数值时,此程序会崩溃。我想让 scanf 在字符被扫描后恢复正常工作。

最佳答案

来自 scanf man-page :

These functions return the number of input items assigned.

所以你可以检查返回值并读入错误值,如果有错误就丢弃:

#include <stdlib.h>
#include <stdio.h>

int main()
{
int input,i;

for(i=0;i<100;i++)
{
if (scanf("%d",&input) == 1) { // check if success

if(input== MAGIC_NUMBER)
{
printf("%d ",input);
}
else
printf("Invalid value\n");
} else { // discard input
int c;
while ((c = getchar()) != '\n' && c != EOF);
}

}

return 0;
}

关于c - 如何处理标准输入错误状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13812150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com