简单程序查错
#include <stdio.h>void main()
{
int letter=0; space=0; number=0; other=0;
char c;
printf("请输入任意字符:\n");
c=getchar();
while(c!='\n')
{
if(c>='a'&&c<='z'//c>='A'&&c<='Z')
letter++;
else if(c==' ')
space++;
else if(c>='0'&&c<='9')
number++;
else
other++;
}
printf("你输入的字符串统计结果为:\n");
printf("字母= %d 数字= %d 空格= %d 其它= %5d ",letter,number,space,other);
}
我是新学,所以很简单的程序也常出错,以上程序有4个错误,请高手帮忙指正一下,谢谢!