#11997: 一個偷吃步的method !


df910105 (憂鬱魷魚)

學校 : 國立高雄海洋科技大學
編號 : 66190
來源 : [192.83.195.218]
最後登入時間 :
2020-04-15 17:27:15
a024. 最大公因數(GCD) | From: [114.39.88.55] | 發表日期 : 2017-05-05 21:18

import java.math.BigInteger;
import java.util.Scanner;

public class codeTest {

public static void main(String[] args){
Scanner in = new Scanner(System.in);

while(in.hasNext()){
BigInteger a = in.nextBigInteger();
BigInteger b = in.nextBigInteger();

System.out.printf("%d", a.gcd(b));
}


in.close();
}

}

 
ZeroJudge Forum