while语句求助
#include <stdio.h>void main()
{
int n = 0;
printf("input a string :\n");
while ( getchar()!='\n');
{
n++;
}
printf("%d", n);
}
不管输出什么都是“1”,求各位大大告知 本帖最后由 人造人 于 2017-5-10 23:59 编辑
多了一个分号^_^
while ( getchar()!='\n'); 人造人 发表于 2017-5-10 23:58
多了一个分号^_^
while ( getchar()!='\n');
谢啦
页:
[1]