返回列表 發帖

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

本帖最後由 tonyh 於 2014-7-26 17:47 編輯

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

  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.    cout<<"你剛輸入的字串是: "<<str<<endl;
  10.    strupr(str);
  11.    cout<<"轉換為大寫: "<<str<<endl;
  12.     strlwr(str);
  13.    cout<<"轉換為小寫: "<<str<<endl;
  14. system("pause");   
  15. return 0;   
  16. }
複製代碼

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.     cout<<"你輸入的是: "<<str<<endl;
  10.     strupr(str);
  11.     cout<<"轉換為大寫: "<<str<<endl;
  12.     strlwr(str);
  13.     cout<<"轉換為小寫: "<<str<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表