当输入空格时程序回到最外层的while,但是不向下执行
#include<stdio.h>
int main()
{
char ch;
int space=0; //空格数
int n=0; //换行数
int word=0; //字符数
while((ch=getchar())!='#')
{
word++;
while((ch=getchar())==' ')
{
space++;
}
while((ch=getchar())=='\n')
{
n++;
break;
}
}
printf("一共有%d个字符,%d个空格,%d个换行",word-n-space,space,n);
}