Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
4022 梅煦洋 元音字母转换 C++ 通过 100 0 MS 252 KB 525 2019-12-27 22:05:24

Tests(1/1):


#include<iostream> using namespace std; int main(){ int n; char qq[60]; scanf("%d%*c",&n); while(n--){ gets(qq); int i=0; while(qq[i]!='\0'){ if(qq[i]=='A'||qq[i]=='O'||qq[i]=='I'||qq[i]=='U'||qq[i]=='E'||qq[i]=='a'||qq[i]=='o'||qq[i]=='i'||qq[i]=='u'||qq[i]=='e'){ if(qq[i]>='a'){ qq[i]=qq[i]-32; } }else{ if((qq[i]>='A'&&qq[i]<='Z')||(qq[i]>='a'&&qq[i]<='z')){ if(qq[i]< 'a'){ qq[i]=qq[i]+32; } } } i++; } puts(qq); } return 0; }


测评信息: