解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
int main()
{
int i=0;
int b=0,c=0,m=0,n=0;
char a[100];
gets(a);
while(a[i]!='\0')
{
if(a[i]>='a'&&a[i]<='z'||a[i]>='A'&&a[i]<='Z')
b++;
else if(a[i]>='0'&&a[i]<='9')
c++;
else if(a[i]==' ')
n++;
else
m++;
i++;
}
printf("%d\n",b);
printf("%d\n",n);
printf("%d\n",c);
printf("%d\n",m);
return 0;
}
0.0分
0 人评分
C语言考试练习题_保留字母 (C语言代码)浏览:733 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:640 |
点我有惊喜!你懂得!浏览:1392 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:670 |
C语言程序设计教程(第三版)课后习题8.3 (Java代码)浏览:1402 |
【绝对值排序】 (C语言代码)浏览:832 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:641 |
WU-字符串比较 (C++代码)浏览:824 |
剪刀石头布 (C语言代码)浏览:802 |
Cylinder (C语言描述,蓝桥杯)浏览:1279 |