#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn = ; //此处注意字符的ASCII码取值范围
char s[maxn];
int hash1[maxn];
int main()
{
int n, flag;
scanf("%d", &n);
getchar(); //吃掉第一个回车
while(n--)
{
gets(s);
int len = strlen(s);
memset(hash1, , sizeof(hash1)); //别忘记初始化
for(int i = ; i < len; i++) hash1[s[i]]++;
printf("a:%d\ne:%d\ni:%d\no:%d\nu:%d\n",hash1['a'], //字母要加单引号
hash1['e'],hash1['i'],hash1['o'],hash1['u']);
if(n) printf("\n"); //最后一组数据后没有空行
}
return ;
}
05-11 04:21