浙大版《C语言程序设计(第4版)》题目集参考答案
本题要求实现一个函数,统计给定字符串中的大写字母、小写字母、空格、数字以及其它字符各有多少。
函数接口定义:
void StringCount( char *s );
其中 char *s
是用户传入的字符串。函数StringCount
须在一行内按照
大写字母个数 小写字母个数 空格个数 数字个数 其它字符个数
的格式输出。
裁判测试程序样例:
#include <stdio.h>
#define MAXS 15
void StringCount( char *s );
void ReadString( char *s ); /* 由裁判实现,略去不表 */
int main()
{
char s[MAXS];
ReadString(s);
StringCount(s);
return 0;
}
/* Your function will be put here */
输入样例:
aZ&*?
093 Az
输出样例:
2 2 1 3 4
提交结果:
基本思路:
遍历数组对字符分类
代码实现:
void StringCount(char* s) {
int letter_big = 0;
int letter_small = 0;
int blank = 0;
int digit = 0;
int other = 0;
for (int i = 0; s[i] != '\0'; i++)
{
if (s[i] >= 'A' && s[i] <= 'Z')//大写字母
{
letter_big++;
}
else if (s[i] >= 'a' && s[i] <= 'z')//小写字母
{
letter_small++;
}
else if (s[i] == ' ')//空格
{
blank++;
}
else if (s[i] >= '0' && s[i] <= '9')//数字
{
digit++;
}
else//其它字符
{
other++;
}
}
printf("%d %d %d %d %d", letter_big, letter_small, blank, digit, other);
}
欢迎提问和纠错,共同讨论一起进步!