输入一行字符,分别统计出其中英文字母(包括大小写)、空格、数字和其他字符的个数.
问题描述:
输入一行字符,分别统计出其中英文字母(包括大小写)、空格、数字和其他字符的个数.
请用C语言!把程序写出来!
答
#include "stdio.h" void main() { char s; int i=0,j=0,k=0,m=0,da=0,xiao=0; printf("please input the string\n"); while((s=getchar())!='\n') /*循环从键盘读入字符直到一行结束(输入回车)*/ { if((s='a')||(...