返回列表 發帖
  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<<"轉為大寫: "<<strupr(str)<<endl;
  11.     cout<<"轉為小寫: "<<strlwr(str)<<endl;
  12.     system("pause");     
  13.     return 0;   
  14. }
複製代碼
Jian-wei Wang

TOP

返回列表