返回列表 發帖

文字順序反轉。

如輸入 see you later,則輸出 later see you。

(a) retal uoy ees;
(b)  later see you;
我是小紅老師,小紅老師是我!!

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;

  4. int main()
  5. {  
  6.        //32-space
  7.    string name("seeyoulater");
  8.     for(int i = 11;name.size()>=i; i--)
  9.      {        cout << name[i] ;    }  
  10.         system("pause");  
  11.         return 0;
  12. }
複製代碼
  1. (a)retaluoyees
複製代碼
張雅淳

TOP

  1. (b)later.see,you
複製代碼
  1. #include<iostream>
  2. #include<string>
  3. using namespace std;

  4. int main()
  5. {  
  6.    string name("seeyoulater");

  7.       for(int i = 6; i < name.size(); i++)
  8.       {        cout << name[i] ;    }

  9.       cout << "," ;


  10.       for(int i = 0; i < name.size()-8; i++)
  11.       {        cout << name[i] ;    }
  12.            
  13.            
  14.       cout << "," ;
  15.    
  16.       for(int i = 3; i < name.size()-5; i++)
  17.       {        cout << name[i] ;    }
  18.      
  19.   system("pause");  
  20.         return 0;

  21. }
複製代碼
張雅淳

TOP

  1. /*ASCII
  2. 大寫字母A~Z
  3. 65~90
  4. 小寫字母a~z
  5. 97~122
  6. */
  7. #include <iostream>
  8. #include <cstdlib>
  9. using namespace std;
  10. int main(void){
  11.     string t;
  12.     int size;
  13.     cout<<"請輸入一個怪單字retal uoy ees"<<endl;
  14.     cin >> t;
  15.    
  16.     for(int i = t.size() ;i>=0;i--){
  17.             cout<<t[i];
  18.             }
  19.    
  20.    
  21. system("pause");
  22. return 0;
  23. }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

返回列表