本帖最後由 tonyh 於 2012-4-21 16:34 編輯
將英文字串轉換為大寫或小寫.- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char string[50]; //宣告一字串陣列
- cout<<"請輸入要轉換的英文字串(50字內): ";
- cin.getline(string,50); //抓取字串, 其長度為50字元
- strlwr(string); //strlwr 為 'string lower' 的縮寫
- cout<<"轉換成小寫: "<<string<<endl;
- strupr(string); //strupr 為 'string upper' 的縮寫
- cout<<"轉換成大寫: "<<string<<endl;
- system("pause");
- return 0;
- }
複製代碼 |