返回列表 發帖

字串處理 (五) - 英文大小寫轉換

本帖最後由 tonyh 於 2015-12-12 10:51 編輯

運用 strupr() 函式 與 strlwr() 函式進行英文大小寫轉換.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     cout<<"輸入一字串: ";
  8.     cin.getline(str,50);
  9.     strupr(str);   //string upper
  10.     cout<<"轉為大寫: "<<str<<endl;
  11.     strlwr(str);   //string lower
  12.     cout<<"轉為小寫: "<<str<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     cout<<"輸入一字串: ";
  8.     cin.getline(str,50);
  9.     strupr(str);   //string upper
  10.     cout<<"轉為大寫: "<<str<<endl;
  11.     strlwr(str);   //string lower
  12.     cout<<"轉為小寫: "<<str<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n;
  7.     char str[0];
  8.     cout<<"請輸入一組英文字串: ";
  9.     cin.getline(str,50);
  10.     cout<<"(1) 轉為大寫  (2)轉為小寫" ;
  11.     cin>>n;
  12.     if(n==1)
  13.     {
  14.         strupr(str);
  15.         cout<<"您輸入的英文字串已變大寫,結果如下:"<<endl;
  16.         cout<<str<<endl;        
  17.     }
  18.     if(n==2)
  19.     {
  20.         strupr(str);
  21.         cout<<"您輸入的英文字串已變小寫,結果如下:"<<endl;
  22.         cout<<str<<endl;        
  23.     }
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     cout<<"輸入一字串: ";
  8.     cin.getline(str,50);
  9.     strupr(str);   
  10.     cout<<"轉為大寫: "<<str<<endl;
  11.     strlwr(str);   
  12.     cout<<"轉為小寫: "<<str<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

TOP

返回列表