请大家帮忙看看一下,问题出在那里。
#include"stdio.h"main()
{char c;
int letters=0,space=0,digit=0,other=0;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z') letters++;
else if(c==' ')space++;
else if(c>='0'&&c<='9')digit++;
else other++;
}
printf("letters=%d\nspace=%d\ndigit=%d\nother=%d\n",letters,space,digit,other);
}
这个程序为什么我把那些变量letters、space、digit、other全部换成简单的a,b,c,d就不能运行了,想不通啊!
[[italic] 本帖最后由 wangyinshiwo 于 2007-12-4 08:26 编辑 [/italic]]