首页 > 代码库 > nyoj 803 A/B Problem 【Java大数】
nyoj 803 A/B Problem 【Java大数】
先用字符串将字符串接收,然后在用BigInteger就好了
代码:
import java.util.Scanner; import java.math.*; public class Main{ public static void main(String[] args){ Scanner cin = new Scanner(System.in); while(cin.hasNextBigInteger()){ BigInteger aa, bb; //a = cin.nextBigDecimal(); //b = cin.nextBigDecimal(); String a, b, c; a = cin.next(); b = cin.next(); c = cin.next(); aa = new BigInteger(a); bb = new BigInteger(c); //System.out.println(a); //System.out.println(b); //System.out.println(c); if(b.compareTo("/") == 0) System.out.println(aa.divide(bb)); if(b.compareTo("%") == 0){ System.out.println(aa.mod(bb)); } //else System.out.println("NO"); } } }
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=803
nyoj 803 A/B Problem 【Java大数】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。