1. 首页
  2. 大数模拟

LightOJ 1214 Large Division (大数取余)

。。。。无符号32位整数

import java.util.*;
import java.math.*;

public class Main {
	public static void main(String[] args) {
		Scanner cin = new Scanner(System.in);
		BigInteger n,k;
		BigInteger m= BigInteger.ZERO;
		int t;
		t=cin.nextInt();
		int casee=1;
		while(t>0)
		{
			t--;
			n=cin.nextBigInteger();
			k=cin.nextBigInteger();
			n=n.abs();
			k=k.abs();
			if(n.mod(k).compareTo(m)==0)
			{
					System.out.println("Case "+casee+": divisible");
					casee++;
			}
			else
			{
				System.out.println("Case "+casee+": not divisible");
				casee++;
			}

		}
		//System.out.println("Hello world!");
		cin.close();
	}

}

 

评分 0, 满分 5 星
0
0
看完收藏一下,下次也能找得到
  • 版权声明:本文基于《知识共享署名-相同方式共享 3.0 中国大陆许可协议》发布,转载请遵循本协议
  • 文章链接:http://www.carlstedt.cn/archives/98 (转载时请注明本文出处及文章链接)
上一篇:
:下一篇

发表评论

gravatar

快来吐槽一下吧!

  1. .01 4:06
  2. .02 1:47
  3. .03 3:39
  4. .04 1:40