[回复文章]求几个简单的循环语句题目
你可以写个“统计字符的程序”。程序要求:让用户输入,然后统计出里面的大小写字母、阿拉伯数字、空格以及其他字符。
原程序如下:
#include <stdio.h>
main()
{
char c;
int letters=0,space=0,digit=0,others=0;
printf("please input some characters:\n");
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
others++;
}
printf("char=%d space=%d digit=%d others=%d\n",letters,
space,digit,others);
}