本帖最後由 t2364705 於 2012-4-28 16:09 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int y;
- char string[100];
- cout<<"請輸入要轉換的英文字串(100字內): ";
- cin.getline(string,100);
- cout<<"請問是要轉換成大寫還是小寫? 1.大寫 2.小寫 : ";
- cin>>y;
-
- if(y==1)
- {
- strupr(string);
- cout<<"轉換成大寫: "<<string;
- }else if(y==2)
- {
- strupr(string);
- cout<<"轉換成小寫: "<<string;
- }else
- {
- cout<<"輸入錯誤!";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |