Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40616 chenyifei 整理药名 C++ 通过 0 MS 248 KB 395 2024-02-14 20:19:33

Tests(1/1):


#include<iostream> #include<cstring> #include<string> using namespace std; int main() { int n; cin>>n; char s[101]; for(int i=0;i<n;i++) { cin>>s; if(s[0]>='a'&&s[0]<='z') s[0]-=32; for(int j=1;j<=strlen(s);j++) if(s[j]>='A'&&s[j]<='Z') s[j]+=32; cout<<s<<endl; } return 0; }


测评信息: