返回列表 發帖
本帖最後由 t2364705 於 2012-4-28 16:09 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     char string[100];               
  8.     cout<<"請輸入要轉換的英文字串(100字內): ";
  9.     cin.getline(string,100);      
  10.     cout<<"請問是要轉換成大寫還是小寫? 1.大寫  2.小寫 : ";
  11.     cin>>y;
  12.      
  13.     if(y==1)
  14.     {
  15.             strupr(string);            
  16.             cout<<"轉換成大寫: "<<string;
  17.     }else if(y==2)
  18.     {
  19.             strupr(string);
  20.             cout<<"轉換成小寫: "<<string;
  21.     }else
  22.     {
  23.             cout<<"輸入錯誤!";
  24.     }     
  25.     cout<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

返回列表