返回列表 發帖

2010網際網路全國程式設計大賽(A. 迴文)

本帖最後由 buy 於 2010-12-11 11:14 編輯

把正確答案貼上來吧各位童鞋
Mai  買大誠 [E-Mail : mainword@dlinfo.tw, mainword@gmail.com] 手機 : 0911-116194
Sun Certified Java Programmer

DL Info 鼎侖資訊 [886-7-969-0998] 高雄市苓雅區光華一路206號6樓之2

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <string>
  4. using namespace std;
  5. int main(void){   
  6.     int HowManyTimes;
  7.     cin >> HowManyTimes;
  8.     string s = "";
  9.     bool IsElse = false;
  10.    
  11.     for (int i = 0;i < HowManyTimes;i++){
  12.         cin >> s;
  13.         for (int j = 0;j < s.length();j++){
  14.             if (s[j] == s[s.length() - 1 - j]){
  15.                  
  16.             }else{
  17.                   IsElse = true;
  18.                   break;     
  19.             }
  20.         }

  21.     if (IsElse == true){
  22.        cout << "no" << endl;           
  23.     }else{
  24.           cout << "yes" << endl;     
  25.     }
  26.     }
  27.             
  28.       
  29.    
  30.     system("Pause");
  31.     return 0;
  32. }
複製代碼
我是來去無蹤的..

                                ..士豪(Alen)黑輪

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     int HowManyTime;
  7.     cin >> HowManyTime;
  8.    
  9.     string s = "";
  10.     bool IsElse = false;
  11.    
  12.     for(int a=0; a<HowManyTime; a++){
  13.             cin >> s;
  14.             for(int b=0; b<s.length(); b++){
  15.                     if(s[b] == s[s.length()-b-1]){
  16.                            
  17.                     }else{
  18.                           IsElse = true;
  19.                           break;
  20.                     }
  21.             }
  22.            if(IsElse == true){
  23.               cout << "no" << endl;
  24.     }else{
  25.           cout << "yes" << endl;
  26.     }
  27.    
  28.     }

  29.     system("pause");
  30.     return 0;
  31.     }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <string>
  4. using namespace std;
  5. int main(){

  6.     int HowManyTimes;
  7.     cin>>HowManyTimes;
  8.    
  9.     string s="";
  10.     bool IsElse = false;
  11.    
  12.     for(int a=0; a<HowManyTimes;a++){
  13.             cin>> s;
  14.             for(int b=0; b<s.length();b++){
  15.                     if(s[b] == s[s.length()-b-1]){
  16.                            
  17.                             }else{
  18.                                   IsElse = true;
  19.                                   break;
  20.                                   }
  21.                                   }
  22.                                   if (IsElse == true){
  23.                                              cout<<"no"<<endl;
  24.                                              }else{
  25.                                                    cout<<"yes"<<endl;
  26.                                                    }
  27.                                                    }
  28. system("pause");
  29. return 0;
  30. }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

返回列表