解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <string.h>
int main()
{
char str[1000];
gets(str);
count(str);
}
int count(char str[1000])
{
int number, space, letter, others, n, i;
n = strlen(str);
number = 0;
space = 0;
letter = 0;
others = 0;
for(i = 0 ; i < n ; i ++)
{
if('a' <= str[i] && str[i] <='z' || 'A' <= str[i] && str[i] <= 'Z')
{
letter ++;
}
else if('0' <= str[i] && str[i] <= '9')
{
number ++;
}
else if(str[i]==' ')
{
space ++;
}
else
{
others++;
}
}
printf("%d %d %d %d",letter, number, space, others);
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:627 |
简单的a+b (C语言代码)浏览:764 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:641 |
【计算两点间的距离】 (C语言代码)浏览:927 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:563 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:934 |
【蟠桃记】 (C语言代码)浏览:1084 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:755 |
C二级辅导-进制转换 (C语言代码)浏览:750 |