- #include<iostream>
- #include<cstdlib>
- #include<string.h>
- using namespace std;
- int main()
- {
- char str[50];
- cout<<"請輸入一字串:";
- cin.getline(str,50);
- cout<<"輸入內容為:"<<str<<endl;
- strupr(str); //string upper:將str轉為大寫後存入 此時str內為大寫
- cout<<"轉為大寫:"<<str<<endl;
- strlwr(str); //string lower:將str轉為小寫後存入 此時str內為小寫
- cout<<"轉為小寫:"<<str<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |