请问这个不会短路求值吗?
#include <stdio.h>int main()
{
int ch;
while (scanf("%d", &ch) == 1 && ch >= 0)
;
return 0;
}
我本以为只要输入的不是1可以跳出循环,但是答案是不是自然数 因为 scanf("%d", &ch) == 1 是判断 scanf 的返回值是不是 1,
应该将代码改为:
#include <stdio.h>
int main()
{
int ch;
scanf("%d", &ch);
while (ch == 1 && ch >= 0)
;
return 0;
} isdkz 发表于 2023-2-16 15:28
因为 scanf("%d", &ch) == 1 是判断 scanf 的返回值是不是 1,
应该将代码改为:
while (scanf("%d", &ch) == 1 && ch >= 0)是判定scanf正确输入且大于等于0;
while (ch == 1 && ch >= 0)这个不等于1就短路了对吧 本帖最后由 isdkz 于 2023-2-16 16:20 编辑
跳二娃 发表于 2023-2-16 15:56
while (scanf("%d", &ch) == 1 && ch >= 0)是判定scanf正确输入且大于等于0;
while (ch == 1 && ch >= ...
ch >= 0 可不就是自然数么?
scanf 返回的是正确输入的变量的个数,在下面语句中你只要正确输入了就是恒成立的,你让它怎么短路?
scanf("%d", &ch) == 1 中只要输入的是整数,这个就为True,&& 是左值为 False 时才会发生短路
你可以查一下 scanf 的返回值:https://www.runoob.com/note/34793
页:
[1]