返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.    
  8.     char small[50],big[50];
  9.     cout<<"請輸入小寫文字"<<endl;
  10.     cin.getline(small,50);
  11.    
  12.     cout<<"小轉大寫"<<endl;
  13.     for(int i=0;small[i]!=NULL;i++)
  14.     cout<<char(int(small[i])-32)<<" ";
  15.     cout<<endl;
  16.    
  17.     system("pause");

  18.     cout<<"請輸入大寫文字"<<endl;
  19.     cin.getline(big,50);
  20.    
  21.     cout<<"大轉小寫"<<endl;
  22.     for(int i=0;big[i]!=NULL;i++)
  23.     cout<<char(int(big[i])+32)<<" ";
  24.     cout<<endl;
  25.    
  26.     system("pause");;
  27.     return 0;



  28. }
複製代碼

TOP

返回列表