#6474: 不知道為什麼會RE??


jake (冰炎)

學校 : 國防大學
編號 : 21820
來源 : [140.129.109.132]
最後登入時間 :
2012-11-29 14:15:01
a005. Eva 的回家作業 -- POJ | From: [140.129.109.133] | 發表日期 : 2012-03-14 23:43

import java.util.*;

public class a005{
 public static void main(String[] args) {
  Scanner input = new Scanner(System.in);
  while(input.hasNext()){
   int a=input.nextInt();
   int b=input.nextInt();
   int c=input.nextInt();
   int d=input.nextInt();
   float e;
   if ((d-c)==(c-b) && (c-b)==(b-a)){
    e=d+(d-c);
    System.out.println(a+" "+b+" "+c+" "+d+" "+e);
   }else if ((double)(d/c)==(double)(c/b) && (double)(c/b)==(double)(b/a)){
    e=d*(d/c);
    System.out.println(a+" "+b+" "+c+" "+d+" "+e);
   }else{
   
   }
  }
 }
}

 
ZeroJudge Forum