习题7-6 统计大写辅音字母(15 分)

习题7-6 统计大写辅音字母(15 分)

英文辅音字母是除AEIOU以外的字母。本题要求编写程序,统计给定字符串中大写辅音字母的个数。

输入格式:

输入在一行中给出一个不超过80个字符、并以回车结束的字符串。

输出格式:

输出在一行中给出字符串中大写辅音字母的个数。

输入样例:

1
HELLO World!

输出样例:

1
4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//统计大写辅音字母
#include<stdio.h>
int main()
{
int i=0;
char str[80];
while((str[i]=getchar())!='\n')
i++;
str[i]='\0';

int count=0;
for(i=0;str[i]!='\0';i++)
{
if(str[i]>='A'&&str[i]<='Z'&&str[i]!='A'&&str[i]!='E'&&str[i]!='I'&&str[i]!='O'&&str[i]!='U')
{
count++;
}
}
printf("%d",count);

return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×