比赛 皇后 评测结果 AAAAAAAAAA
题目名称 牛语 最终得分 100
用户昵称 Hyoi_ctime 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-03-19 18:37:46
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
using namespace std;
int n;
string yy;
int main()
{
	freopen("latin.in","r",stdin);
	freopen("latin.out","w",stdout);
	scanf("%d",&n);
	for(int i=0;i<n;i++){
	cin>>yy;
	if(yy[0]=='a'||yy[0]=='o'||yy[0]=='e'||yy[0]=='i'||yy[0]=='u')
	{
		cout<<yy+"cow"<<endl;
	}
	else{
		string ny(yy);
		ny.erase(0,1);
		cout<<ny+yy[0]+"ow"<<endl;
	}
      }
}