返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     char gg[100],gk[100];
  8.     cout<<"請輸入了小寫字母:"<<endl;
  9.     cin.getline(gg,100);
  10.     cout<<"請輸入了大寫字母:"<<endl;
  11.     cin.getline(gk,100);
  12.     cout<<"便跟成大寫的結果為:"<<endl;
  13.     for(int i=0; gg[i]!=NULL; i++)
  14.         cout<<char(int(gg[i])-32);
  15.         cout<<endl;
  16.     cout<<"便跟成小寫的結果為:"<<endl;
  17.     for(int i=0; gk[i]!=NULL; i++)
  18.         cout<<char(int(gk[i])+32);   
  19.         cout<<endl;
  20. system("pause");   
  21. return 0;   
  22. }
複製代碼

TOP

返回列表