- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- char small[50],big[50];
- cout<<"請輸入小寫: "<<endl;
- cin.getline(small,50);
-
- cout<<"小寫轉大寫"<<endl;
- for(int i=0;small[i]!=NULL; i++)
- cout<<char(int(small[i]-32))<<" ";
- cout<<endl;
-
- cout<<"********************"<<endl;
- cout<<"請輸入大寫: "<<endl;
- cin.getline(big,50);
-
- cout<<"大寫轉小寫"<<endl;
- for(int i=0;big[i]!=NULL; i++)
- cout<<char(int(big[i]+32))<<" ";
-
- system("pause");
- return 0;
- }
複製代碼 |