gpt4 book ai didi

c - 我需要一个可以禁止字符输入的函数,我只需要用户输入整数

转载 作者:行者123 更新时间:2023-11-30 21:06:49 25 4
gpt4 key购买 nike

 case 'f':
printf ("Great!!! lets create your fixed account\n");

printf ("\nA minimum purchase of 1000 units is required for this

account\n");
printf ("\nPrice per unit as of Sep. 15 is $52.69\n")
;
printf ("\nPlease enter required amount of units\n");

scanf("%d",&amount);


if (isdigit(amount))

{
printf ("invalid input\n");
success = 'f';
break;

最佳答案

阅读doc on scanf ,然后更改代码以检查调用 scanf 的返回值。 is digital(amount) 仅当用户输入与当前代码页中的字符匹配的值时才能成功,因此请停止调用它。

关于c - 我需要一个可以禁止字符输入的函数,我只需要用户输入整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46838824/

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