码迷,mamicode.com
首页 > 编程语言 > 详细

hdu 5050 Divided Land(JAVA高精度)

时间:2014-09-27 23:04:30      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   java   for   sp   div   

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

public class Main {
    public static void main(String[] args) {
        Scanner cin=new Scanner(System.in);
        int T;
        T=cin.nextInt();
        BigInteger a,b;
        for(int cas=1;cas<=T;cas++){
            a=cin.nextBigInteger(2);
            b=cin.nextBigInteger(2);
            a=a.gcd(b);
            System.out.println("Case #"+cas+": "+a.toString(2));
        }
    }
}

 

hdu 5050 Divided Land(JAVA高精度)

标签:style   blog   color   os   ar   java   for   sp   div   

原文地址:http://www.cnblogs.com/wshh/p/3997322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!