求助 switch语句的问题
照着小甲鱼打的求输入字符串字符个数的代码 但无论如何返回的都是1个字符 是怎么回事?这是代码:#include <stdio.h>
int main()
{
int count = 0;
printf("请输入任意一行英文代码:\n");
while (getchar() != '\n');
{
count = count + 1;
}
printf("输入了%d个字符\n", count);
return 0;
}
说错了 while语句{:5_103:} while (getchar() != '\n');
去掉语句末尾红色的分号
页:
[1]