返回列表 發帖
  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

返回列表