Board logo

標題: 字串處理 (五) - 英文大小寫轉換 [打印本頁]

作者: tonyh    時間: 2015-12-12 10:45     標題: 字串處理 (五) - 英文大小寫轉換

本帖最後由 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. }
複製代碼

作者: 梁和雋    時間: 2015-12-12 10:53

  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. }
複製代碼

作者: 李知易    時間: 2015-12-12 11:10

  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. }
複製代碼

作者: 洪振庭    時間: 2015-12-14 16:23

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2