#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语言代码)浏览:1366 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:548 |
1014题解浏览:524 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
C二级辅导-计负均正 (C语言代码)浏览:523 |
DNA (C语言代码)浏览:837 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:545 |
简单的a+b (C语言代码)浏览:491 |