解题思路:运用<ctype.h>函数库的函数
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
#include<ctype.h>
void f(char *a)
{
int i;
int cnt[4]={0};
for(i=0;a[i]!='\0';i++)
{
if(isalpha(a[i]))
cnt[0]++;
else if (isdigit(a[i]))
cnt[1]++;
else if(a[i]==' ')
cnt[2]++;
else cnt[3]++;
}
for (i=0;i<4;i++)
{
printf ("%d ",cnt[i]);
}
}
int main()
{
char a[1024];
gets(a);
f(a);
return 0;
}
0.0分
0 人评分
矩形面积交 (C语言代码)浏览:1553 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:643 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:387 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1334 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1186 |
WU-拆分位数 (C++代码)浏览:819 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
幸运数 (C++代码)浏览:1309 |