Run ID:123702

提交时间:2025-07-10 08:54:51

#include<bits/stdc++.h> using namespace std; int main() { int n; char c[50]; getchar(); for(int i=1;i<=n;i++) { cin.getline(c,50); for(int j=0;j<strlen;j++) { if(c[j]>='A' && c[j]<='Z') c[j]=c[j]+32; if(c[j]=='a' || c[j]=='e' || c[j]=='i' || c[j]=='o' || c[j]=='u') c[j]=c[j]-32; } cout<<c<<endl; } return 0; }