请教高手门!小菜提问
编写一个程序让用户输入一串字符按回车结束最多80个字符,统计其中的数字,字母和空格的个数(这个程序只能用FOR循环来做)请问怎样做呢
运行一下 随手写的 挺简单的...
#include<iostream.h>
#include<stdio.h>
void main()
{
int a=0,b=0,c=0;
char str[80]={};
gets(str);
for(int i=0;str[i]!='\0';i++)
{
if((str[i]>='A'&&str[i]<='Z')||(str[i]>='a'&&str[i]<='z'))
a++;
else
if(str[i]>='0'&&str[i]<='9')
b++;
else
if(str[i]==' ')
c++;
}
cout<<"totle letter= " <<a <<endl;
cout<<"totle number= " <<b <<endl;
cout<<"totle null= " <<c <<endl;
}