A/B Problem
时间限制:1000 ms | 内存限制:65535 KB
难度:3
- 描述
-
做了A+B Problem,A/B Problem不是什么问题了吧!
- 输入
- 每组测试样例一行,首先一个号码A,中间一个或多个空格,然后一个符号( / 或者 % ),然后又是空格,后面又是一个号码B,A可能会很长,B是一个int范围的数。
- 输出
- 输出结果。
- 样例输入
-
110 / 100 99 % 10 2147483647 / 2147483647 2147483646 % 2147483647
- 样例输出
-
1 9 1 2147483646
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input=new Scanner(System.in); while(input.hasNext()){ String a=input.next(); String c=input.next(); String b=input.next(); BigInteger A=new BigInteger(a); BigInteger B=new BigInteger(b); if(c.equals("/")){ System.out.println(A.divide(B)); }else{ System.out.println(A.mod(B)); } } } }