#include <stdio.h>
int main(void) {
int x = 0;
while (1){
x = scanf("%d",&x);
printf("%d",x);
}
return 0;
}
1
wevsty 2018-10-26 14:24:07 +08:00
scanf 的返回值并不是输入的内容。
|
2
messyidea 2018-10-26 14:24:21 +08:00
输入字母不应该是 %c 么
|
3
Ginray 2018-10-26 14:26:33 +08:00
一楼正解
|
4
yuikns 2018-10-26 14:28:10 +08:00
https://linux.die.net/man/3/scanf
These functions return the number of input items successfully matched and assigned, which can be fewer than provided for, or even zero in the event of an early matching failure. |
5
xxgirl2 2018-10-26 14:45:37 +08:00
|
6
zuoyouTU 2018-10-26 16:56:43 +08:00
稍补充下,等号表达式最后执行
|
7
a516585610 2018-10-26 18:33:09 +08:00 via Android
%d 输入字母会失败,scanf 返回 0 输出当然也是 0
|
8
webdisk 2018-10-26 18:35:36 +08:00 via Android
while (1) 后面是不是少个空格
|
9
aopod 2018-10-26 18:45:14 +08:00 1
针对一直输出的问题,或许试试清除缓冲区?
|
10
codechaser OP @wevsty 这个我知道啊,输入字母 scanf 返回 0,打印 0 能理解,但是为什么一直在打印 0 啊?求教
|
11
xiaopc 2018-10-26 19:14:40 +08:00 via Android
@codechaser 因为你 while (1) 了
|
12
codechaser OP @webdisk 这跟空格有啥关系啊😓
|
13
codechaser OP @xiaopc 但是输入数字就能多次输入
|
14
codechaser OP @aopod 谢谢老哥!我在`x=scanf("%d",&x)`后面加了句`setbuf(stdin,NULL);`就没有一直输出了!感谢!能讲解下原因吗
|
15
xiaopc 2018-10-26 19:25:50 +08:00 via Android 1
@codechaser 对对,是缓存区的问题。
scanf 没从 stdin 读到对应数据不会清除缓冲区。 |
16
codechaser OP @xiaopc 是的,scanf 在这里会跳过非数字,把字母一直留在缓冲区,所以每次读入的都是之前输入的字母,也就一直打印 0 了
|
17
jimchen9999 2018-10-26 19:38:59 +08:00
the issue lies with the buffer in C
|
18
webdisk 2018-10-26 20:11:53 +08:00
@codechaser 没关系,但是不符合编码规则我就难受
|