#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main ()
{
char str[100];
int alpha=0,digit=0,space=0,other=0;
int n=100;
gets(str);
for(int i=0;i<strlen(str);i++){
if (isalpha(str[i]))
++alpha;
else if(isdigit(str[i]))
++digit;
else if(str[i]==32)
++space;
else
++other;
}
cout<<alpha<<" "<<digit<<" "<<space<<" "<<other<<endl;
return 0;
}
0.0分
0 人评分
矩形面积交 (C语言代码)浏览:1553 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:949 |
Pascal三角 (C语言代码)浏览:1252 |
淘淘的名单 (C语言代码)答案错误???浏览:624 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
众数问题 (C语言代码)浏览:911 |
printf基础练习2 (C语言代码)浏览:796 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:645 |
大家好,我是验题君浏览:604 |