13:將字串中的小寫字母轉換成大寫字母
- 總時間限制:
- 1000ms
- 記憶體限制:
- 65536kB
- 描述
-
給定一個字串,將其中所有的小寫字母轉換成大寫字母。
- 輸入
- 輸入一行,包含一個字串(長度不超過100,可能包含空格)。
- 輸出
- 輸出轉換後的字串。
- 樣例輸入
-
helloworld123Ha
- 樣例輸出
-
HELLOWORLD123HA
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 using namespace std; 5 char a[100001]; 6 char ans[1001]; 7 int now; 8 int main() 9 { 10 gets(a); 11 int l=strlen(a); 12 for(int i=0;i<l;i++) 13 { 14 if(a[i]>=97&&a[i]<=122)a[i]=a[i]-32; 15 }//大小寫轉換 16 17 puts(a); 18 return 0; 19 }