返回列表 發帖
  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<<"請輸入小寫: "<<endl;
  9.    cin.getline(small,50);
  10.    
  11.    cout<<"小寫轉大寫"<<endl;
  12.    for(int i=0;small[i]!=NULL; i++)
  13.       cout<<char(int(small[i]-32))<<" ";
  14.    cout<<endl;
  15.    
  16.    cout<<"********************"<<endl;
  17.    cout<<"請輸入大寫: "<<endl;
  18.    cin.getline(big,50);
  19.    
  20.    cout<<"大寫轉小寫"<<endl;
  21.    for(int i=0;big[i]!=NULL; i++)
  22.       cout<<char(int(big[i]+32))<<" ";
  23.    
  24. system("pause");
  25. return 0;
  26. }
複製代碼

TOP

返回列表