[PTA]实验3-4 统计字符
Posted Spring-_-Bear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[PTA]实验3-4 统计字符相关的知识,希望对你有一定的参考价值。
本题要求编写程序,输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数。
输入格式:
输入为10个字符。最后一个回车表示输入结束,不算在内。
输出格式:
在一行内按照letter = 英文字母个数, blank = 空格或回车个数, digit = 数字字符个数, other = 其他字符个数的格式输出。
输入样例:
aZ &
09 Az
输出样例:
letter = 4, blank = 3, digit = 2, other = 1
- 提交结果:
- 源码:
#include<stdio.h>
int main(void)
{
int letter, blank, digit, other;
int i = 1;
char ch;
letter = blank = digit = other = 0;
while (i <= 10)
{
ch = getchar();
if (ch >= 'a' && ch <= 'z' || ch >= 'A' && ch <= 'Z')
{
letter++;
}
else if (ch >= '0' && ch <= '9')
{
digit++;
}
else if (ch == ' ' || ch == '\\n')
{
blank++;
}
else
{
other++;
}
i++;
}
printf("letter = %d, blank = %d, digit = %d, other = %d", letter, blank, digit, other);
return 0;
}
以上是关于[PTA]实验3-4 统计字符的主要内容,如果未能解决你的问题,请参考以下文章