大数运算之 Java BigInteger 的基本用法

大数运算之 Java BigInteger 的基本用法

在程序设计竞赛中会遇到高精度运算的问题,C++没有高精度运算,只能手动模拟人工运算,手动实现高精度,而 java.math 包中的 BigInteger 提供了高精度的基本运算,因此竞赛中常用 Java 解决高精度运算问题。

当然如果比赛支持 python 就当我没说。

BigInteger 对象的创建

BigInteger 类在 java.math.BigInteger 包中,首先引用该包。

import java.math.BigInteger;

BigInteger 对象的创建

BigInteger a = new BigInteger("123"); // 这里是字符串

改变 BigInteger 的值

String str = "123";
BigInteger a = BigInteger.valueOf(str);

int num = 456;
BigInteger a = BigInteger.valueOf(num);

基本常量

a = BigInteger.ONE // 1
b = BigInteger.TEN // 10
c = BigInteger.ZERO // 0

BigInteger 的输入输出

直接读入 BigInteger

Scanner in = new Scanner(System.in);
while(in.hasNext()) //等同于!=EOF
{
    BigInteger a;
    a = in.nextBigInteger();
    System.out.print(a.toString());
}

间接读入 BigInteger

Scanner in = new Scanner(System.in);
while(in.hasNext()) //等同于!=EOF
{
    String s = in.nextLine();
    BigInteger a = new BigInteger(s);
    System.out.print(a.toString());
}

BigInteger 直接输出

System.out.print(a);

BigInteger 转化成十进制表示的 String

System.out.print(a.toString());

BigInteger 转化成 p 进制表示的 String

int p = 2;
System.out.print(a.toString(p)); // 输出a的二进制

BigInteger 二进制下的长度

BigInteger n = new BigInteger("12");
System.out.println(n.bitLength()); // 4

BigInteger 的基本运算

BigInteger 之间的比较

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

System.out.println(a.equals(b)); // a == b 时为 true 否则为 false
BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

if(a.compareTo(b) == 0) System.out.println("a == b"); // a == b
else if(a.compareTo(b) > 0) System.out.println("a > b"); // a > b
else if(a.compareTo(b) < 0) System.out.println("a < b"); // a < b

加法

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

a.add(b);

减法

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

a.subtract(b);

乘法

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

a.multiply(b);

除法

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

a.divide(b);

取余

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

BigInteger c = b.remainder(a);
System.out.println(c);

除法取余

BigInteger a = new BigInteger("123");
BigInteger b = new BigInteger("456");

BigInteger result[] = b.divideAndRemainder(a); // 该函数返回的是数组
System.out.println("商是:" + result[0] + ";余数是:" + result[1]);

最大公约数

BigInteger a = new BigInteger("12");
BigInteger b = new BigInteger("56");

System.out.println(a.gcd(b)); // 4

绝对值

BigInteger a = new BigInteger("-12");

System.out.println(a.abs()); // 12

取反数

BigInteger a = new BigInteger("-12");

System.out.println(a.negate()); // 12

BigInteger a = new BigInteger("2");

System.out.println(a.pow(3)); // 8

原文地址:https://www.cnblogs.com/wulitaotao/p/11360386.html

时间: 2024-10-10 00:59:41

大数运算之 Java BigInteger 的基本用法的相关文章

java BigInteger类的用法

import java.math.BigInteger; 1.新建一个对象 Scanner in = new Scanner(System.in); BigInteger x1 = new BigInteger("-11"); //新建一个对象 BigInteger x2 = in.nextBiginteger();//键盘输入 BigInteger y = x1.abs(); //取绝对值 BigInteger y2 = x1.add(y); //x+y int x3 = y.com

java 大数运算[转]

用JAVA 实现算术表达式(1234324234324 + 8938459043545)/5 + 343434343432.59845 因为JAVA语言中的long 定义的变量值的最大数受到限制,例如123456789987654321这样的整数就不能存放在long类型的变量中,如果这样两个大数相加或相乘,产生的结果会更大.比如,JAVA语言中如果使用long l = 1000000000这样定义没错,但如果加上2000000000变成 1000000000+2000000000测试结果就为-1

POJ 1053 Integer Inquiry (大数加法,还是Java大法好)

Integer Inquiry Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 32674   Accepted: 12789 Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he

POJ 1503 Integer Inquiry(大数相加,java)

题目 我要开始练习一些java的简单编程了^v^ import java.io.*; import java.util.*; import java.math.*; public class Main { /** * @param args */ public static void main(String[] args) throws Exception { // 定义并打开输入文件 Scanner cin = new Scanner(System.in); BigInteger a, sum

java成神之——java中string的用法

java中String的用法 String基本用法 String分割 String拼接 String截取 String换行符和format格式化 String反转字符串和去除空白字符 String获取指定位置字符和replace的使用 StringBuffer的使用 字符串转换 基本类型的转换 添加字符编码 Base64的编码和解码 结语 java中String的用法 String基本用法 字符串一旦创建在堆中就不可变 字符串声明 String str = "你好"; String s

java BigInteger BigDicimal例题

需要import  java.math.*; BigInteger: add(BigInteger val);               + subtract(BigInteger val);        - multiply(BigInteger val);         * divide(BigInteger val);            / remainder(BigInteger val);    % compareTo(BigInteger val)     <返回-1   

关于大数运算

在接触计算机这么久以来,我一直被大数运算困扰,确切的说是在一些特定方面非常有受挫感,在计算机中的数据类型对数字支持的数位有限制,例如: long   long  int  a = 0; 这里的a 最多可以表示一个9位的长整型数字,要想存储超过9位的数字,最可行的方法是使用数组来存储每一位的值.所以在遇到大数运算的时候可以借用数组来完成相应的运算操作.

Java下static关键字用法详解

Java下static关键字用法详解 本文章介绍了java下static关键字的用法,大部分内容摘自原作者,在此学习并分享给大家. Static关键字可以修饰什么? 从以下测试可以看出, static 可以修饰: 1. 语句块 2. 成员变量(但是不能修饰局部变量) 3. 方法 4. 接口(内部接口) 5. 类(只能修饰在类中的类, 即静态内部类) 6. jdk 1.5 中新增的静态导入 那么static 修饰的表示什么呢? 当创建一个类时,就是在创建一个新类型,描述这个类的对象的外观和行为,除

java之finally的用法

package com.smbea.demo.tryCatchFinally; /** * java之finally的用法 * @author hapday * @2017年2月5日 @上午12:21:16 */ public class TryCatchFinallyDemo { public static void main(String[] args) { hasException(); System.out.println("\n-----------------------------