- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- char gg[100],gk[100];
- cout<<"請輸入了小寫字母:"<<endl;
- cin.getline(gg,100);
- cout<<"請輸入了大寫字母:"<<endl;
- cin.getline(gk,100);
- cout<<"便跟成大寫的結果為:"<<endl;
- for(int i=0; gg[i]!=NULL; i++)
- cout<<char(int(gg[i])-32);
- cout<<endl;
- cout<<"便跟成小寫的結果為:"<<endl;
- for(int i=0; gk[i]!=NULL; i++)
- cout<<char(int(gk[i])+32);
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |