c=getchar()!='\n'到底什么用呢
#include <math.h>/*输入一行字统计其中的数字,字母,空白符*/
main()
{
int c;
int letter=0,space=0,digit=0,other=0;
printf("请输入:");
while((c=getchar())!='\n')
{
if(c>'a'&&c<'z'||c>'A'&&c<'Z')
letter++;
else if(c==' ')
space++;
else if(c>'0'&&c<'9')
digit++;
else
other++;
}
printf("%d个字母 %d个空白符 %d个数字 %d个其他字符",letter,space,digit,other);
}
为什么用'\n'作限制条件?
运行时我打了两行字,它连第二行的字符都统计了出来
是程序错了还是我对(c=getchar())!='n\')的理解有错呢?