输入在一行中给出一个不超过80个字符、并以回车结束的字符串。
输出格式:
输出在一行中给出字符串中大写辅音字母的个数。
输入样例:
HELLO World!
输出样例:
4#include<stdio.h>
int main()
{ int count=0;
char ch[5]={‘A’,‘E’,‘I’,‘O’,‘U’};
char op;
while((op=getchar())!=’\n’)
{
for(int i=0;i<5;i++)
{
if(op==ch[i])
{
count++; break; }
}
}
printf("%d",count);
return 0;
}