#4583: a005. Eva 的回家作業


nicknt9095 (︴〝★吹轟a ω)

學校 : 國立高雄應用科技大學
編號 : 8206
來源 : [114.35.196.162]
最後登入時間 :
2011-11-21 20:51:43
a005. Eva 的回家作業 -- POJ | From: [115.43.236.135] | 發表日期 : 2010-11-23 01:03

#include<iostream>
using namespace std; 
int main(){
     
     int num,d[4],st;
     bool tr=false;
     cin >> num;
     
     for(int f1=1;f1<=num;f1++){
     
         for(int f2=0;f2<4;f2++){
         cin >> d[f2];       
         }
         
     st=d[2]-d[1];
     
         for(int f2=0;f2<3;f2++){
             
             if(d[f2]+st!=d[f2+1]){
             tr=true;                      
             }
                     
         }
         
         for(int f2=0;f2<4;f2++)
         cout << d[f2] << " "; 
         
         if(tr==true){
         cout << d[3]*(d[3]/d[2]) << endl;
         }else{             
         cout << d[3]+st << endl;
         }
     
     }
     return 0;
}
 
輸入 2 4 6 8
 
他跑出2 4 6 8 10 
系統為什麼一直說我答案是 2 4 6 8 8 
 
ZeroJudge Forum