标签:style blog color ar os java sp div on
几道水题,练习一下JAVA写大数
poj2305 Basic remains
大数可以直接用非十进制读入,读入的数在变量中是十进制的
输出的时候要先用BigInteger的toString方法转换为相应的进制
1 import java.math.*; 2 import java.util.*; 3 class Main 4 { 5 public static void main(String[] args) 6 { 7 Scanner cin = new Scanner(System.in); 8 while(true) 9 { 10 int b = cin.nextInt(); 11 if(b==0)break; 12 BigInteger p = cin.nextBigInteger(b); 13 BigInteger m = cin.nextBigInteger(b); 14 String s = p.mod(m).toString(b); 15 System.out.println(s); 16 } 17 } 18 }
标签:style blog color ar os java sp div on
原文地址:http://www.cnblogs.com/GJKACAC/p/4084148.html