作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码的 if 部分与 for 循环结合使用时无法正常运行。无论 if 语句是否满足, printf 命令都不会执行。我尝试过同时实现 while 和 for 循环,但没有成功。目的是用户输入仅包含数值的数组。下面是我的 C 代码中有问题的部分。我已经学习 C 语言大约一周了,请原谅我的无知:)。
int value;
int containsValues[5];
int x = 0;
int i = 0;
for (x<5;x++)
{
printf("Enter value: \n");
scanf("%d", &value);
if (isdigit(value))
printf("A numeric value must be entered\n");
else
containsValues[x] = value;
}
最佳答案
如果 c
是数字字符 (0-9),则
isdigit(int c)
将返回 true,如果 c
是 ,则返回 true >int
。例如,isdigit(48)
为 true,因为 ASCII 代码 48 引用数字 0
。但 isdigit(0)
将返回 false。
关于c - While 循环中的 If 语句出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35866860/
我是一名优秀的程序员,十分优秀!