Board logo

標題: 文字順序反轉。 [打印本頁]

作者: stephen    時間: 2010-6-5 10:40     標題: 文字順序反轉。

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

(a) retal uoy ees;
(b)  later see you;
作者: yachen392    時間: 2010-6-5 10:56

  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
複製代碼

作者: yachen392    時間: 2010-6-5 11:31

  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. }
複製代碼

作者: p17johnny    時間: 2010-6-5 11:33

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2