#31739: java


jbuduoo@gmail.com (戴先生)

學校 : 不指定學校
編號 : 81200
來源 : [110.26.94.48]
最後登入時間 :
2022-08-20 00:52:21
a005. Eva 的回家作業 -- POJ | From: [110.26.94.48] | 發表日期 : 2022-08-17 01:17

package com.jb;

import java.util.Scanner;

public class Test {

    public static void main(String[] args) {
        Scanner num = new Scanner(System.in);
        int S = num.nextInt();
        while (S > 0 && num.hasNext()) {

                int a = num.nextInt();
                int b = num.nextInt();
                int c = num.nextInt();
                int d = num.nextInt();
                String A = num.nextLine();

                // 等差數列
                if (b - a == d - c ) {
                    System.out.println(a + " " + b + " " + c + " " + d + " " + ( d + b - a));
                }
                // 等比數列
                else {
                    System.out.println(a + " " + b + " " + c + " " + d + " " + (d * d / c));
                }
                System.out.println("");

            S--;
        }

        num.close();
    }

}

 
ZeroJudge Forum