#include <iostream>
#include<cstdio>
using namespace std;
int main()
{
char str[100];
int X=0,A=0,E=0,I=0,O=0,U=0;
gets(str);
while(str[X]!='\0')
{
if(str[X]=='a')A++;
else if(str[X]=='e')E++;
else if(str[X]=='i')I++;
else if(str[X]=='o')O++;
else if(str[X]=='u')U++;
X++;
}
cout<<"a:"<<A<<endl;
cout<<"e:"<<E<<endl;
cout<<"i:"<<I<<endl;
cout<<"o:"<<O<<endl;
cout<<"u:"<<U<<endl;
return 0;
}
第十三周oj平台项目三:统计元音字母
最新推荐文章于 2021-09-10 11:13:51 发布