返回列表 發帖

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string str;
  6.     cin>>str;
  7.     for(int i=0;i<str.length();i++)
  8.         if(str[i]>='a')
  9.         {
  10.             cout<<char(str[i]-'a'+'A');
  11.         }
  12.         else
  13.             cout<<char(str[i]-'A'+'a')<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表