delete pics to save space
This commit is contained in:
13
history_source/信息学奥赛一本通/1.5.3.10.cpp
Normal file
13
history_source/信息学奥赛一本通/1.5.3.10.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include<iostream>
|
||||
#include<string>
|
||||
using namespace std;
|
||||
int main()
|
||||
{
|
||||
string a;
|
||||
getline(cin,a);
|
||||
for(int i=0;i<a.size();i++)
|
||||
if(a[i]>='a'&&a[i]<='z') a[i]-=32;
|
||||
cout<<a<<endl;
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user