水起来
参考代码:
#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getline(cin,str)){ if(str=="End of file") break; int n=str.size(); for(int i=0;i<n;i++){ if(islower(str[i])) str[i]=toupper(str[i]); } cout<<str<<endl; } return 0; }
0.0分
0 人评分