gpt4 book ai didi

c - c中如何限制用户不能输入0

转载 作者:行者123 更新时间:2023-11-30 14:53:46 25 4
gpt4 key购买 nike

我有以下函数来过滤整数值并重新提示用户。

int checkInput0(void){
int option0,check0;
char c;

do{
printf("Enter the amount of triangles you want to check: \n");

if(scanf("%d%c",&option0,&c) == 0 || c != '\n'){
while((check0 = getchar()) != 0 && check0 != '\n' && check0 != EOF);
printf("[ERR] Invalid number of triangles.\n");
}else{
break;
}
}while(1);
// printf("returning the value of option, which is %f", option);
return option0;

但是,我也想将此功能扩展到过滤器 0。

我好像漏掉了一些东西。我们将不胜感激所有帮助。

提前致谢!

最佳答案

发布的代码没有正确检查“scanf()”的返回值,并且没有完全执行所需的功能。

以下建议代码:

  1. 阐明逻辑
  2. 正确检查 I/O 错误
  3. 丢弃无效输入
  4. 如果 I/O 失败则退出程序
  5. 将数据的输入与“stdin”的清空分开

现在建议的代码:

do
{
printf("Enter the amount of triangles you want to check: \n");

if( scanf( "%d", &option0 ) == 1 )
{
if( 0 >= option0 )
{ // 0 or negative value entered
printf("[ERR] Invalid number of triangles.\n");
continue;
}

// empty stdin
while( (check0 = getchar()) != EOF && check0 != '\n' );

// exit while() loop
break;
}

else
{ // scanf failed
perror( "scanf for number of triangles failed" );
exit( EXIT_FAILURE );
}
} while(1);

关于c - c中如何限制用户不能输入0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47035858/

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