返回列表 發帖
本帖最後由 蔡依宸 於 2019-4-20 15:48 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     char small[50],big[50];
  8.     cout<<"請輸入小寫文字:";
  9.     cin.getline(small,50);
  10.   
  11.     //small[0] = a ;  small[1] = b ; small[2] = c ;  small[3] =  ;
  12.     cout<<"小轉大寫:"<<endl;
  13.     for(int i=0; small[i]!=NULL; i++)  //small陣列的字元 依依列出來
  14.        cout<<char(int(small[i])-32)<<" ";
  15.     cout<<endl;
  16.    
  17.    
  18.     system("pause");
  19.     cout<<"======================================"<<endl;   
  20.     cout<<"請輸入大寫文字:";
  21.     cin.getline(big,50);
  22.    
  23.     cout<<"大轉小寫:"<<endl;
  24.     for(int i=0; big[i]!=NULL; i++)
  25.        cout<<char(int(big[i])+32)<<" ";
  26.       
  27.     cout<<endl;
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

返回列表