gpt4 book ai didi

c - 我应该将用户输入的验证码放在哪里

转载 作者:行者123 更新时间:2023-11-30 19:40:59 25 4
gpt4 key购买 nike

if (!strcmp(yn, "y")) {
isCooked[x] = 1;
printf("How much %s (in grams) will you cook? ", food[choice - 1]);
} else {
isCooked[x] = 0;
printf("How much %s (in grams) will you eat raw? ", food[choice - 1]);
}

scanf("%f", &grams);
userGrams[x] = grams;

如果我想控制grams的用户输入,我应该把if-else语句放在哪里?我想对我的程序进行限制,例如用户只能输入最小值 20g 和最大值 200g。

最佳答案

您可以使用 while 循环和 if 语句 -

while(scanf("%f", &grams)==1){           // loop until scanf returns 1 
if(grams>=20 && grams<=200){ // validate your input
userGrams[x] = grams; //assign value
break; //break out of loop
}
else{
printf("Invalid Input !! ");
}
}

关于c - 我应该将用户输入的验证码放在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34133182/

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