Java大数

转自:https://www.cnblogs.com/zufezzt/p/4794271.html

 

import java.util.*;
import java.math.*;
public class Main{public static void main(String args[]){Scanner cin = new Scanner(System.in);BigInteger a, b;//以文件EOF结束while (cin.hasNext()){a = cin.nextBigInteger();b = cin.nextBigInteger();System.out.println(a.add(b)); //大整数加法System.out.println(a.subtract(b)); //大整数减法System.out.println(a.multiply(b)); //大整数乘法System.out.println(a.divide(b)); //大整数除法(取整)System.out.println(a.remainder(b)); //大整数取模//大整数的比较if( a.compareTo(b) == 0 ) System.out.println("a == b"); //大整数a==belse if( a.compareTo(b) > 0 ) System.out.println("a > b"); //大整数a>belse if( a.compareTo(b) < 0 ) System.out.println("a < b"); //大整数a<b//大整数绝对值System.out.println(a.abs()); //大整数a的绝对值//大整数的幂int exponent=10;System.out.println(a.pow(exponent)); //大整数a的exponent次幂//返回大整数十进制的字符串表示
           System.out.println(a.toString());//返回大整数p进制的字符串表示int p=8;System.out.println(a.toString(p));}}
}

 

 

转自:https://blog.csdn.net/morejarphone/article/details/51884888

HDU 1002

a+b大数版

 1 import java.math.BigInteger;
 2 import java.util.Scanner;
 3 
 4 public class Main {
 5     void solve () {
 6         BigInteger a, b, c;
 7         Scanner cin = new Scanner(System.in);
 8         int t = cin.nextInt ();
 9         for (int i = 1; i <= t; i++) {
10             System.out.println ("Case " + i + ":");
11             a = cin.nextBigInteger ();
12             b = cin.nextBigInteger ();
13             System.out.println (a + " + " + b + " = " + a.add (b));
14             if (i != t) System.out.println ();
15         }
16     }
17     public static void main (String[] args) {
18         Main work = new Main();
19         work.solve ();
20     }
21 }

 

HDU 1042

阶乘大数版

 1 import java.math.BigInteger;
 2 import java.util.Scanner;
 3 
 4 public class Main {
 5     int maxn = 10005;
 6     void solve () {
 7         Scanner cin = new Scanner(System.in);
 8         int n;
 9         while (cin.hasNext()) {
10             n = cin.nextInt ();
11             BigInteger ans = BigInteger.valueOf (1);
12             for (int i = 2; i <= n; i++) {
13                 ans = ans.multiply (BigInteger.valueOf (i));
14             }
15             System.out.println (ans);
16         }
17     }
18     public static void main (String[] args) {
19         Main work = new Main();
20         work.solve ();
21     }
22 }

 

HDU 1297

f(n)=f(n1)+f(n2)+f(n4)f(n)=f(n−1)+f(n−2)+f(n−4)

import java.math.*;
import java.util.*;public class Main {void solve () {Scanner cin = new Scanner(System.in);BigInteger[] ans = new BigInteger[1001];ans[1] = BigInteger.valueOf (1);ans[2] = BigInteger.valueOf (2);ans[3] = BigInteger.valueOf (4);ans[4] = BigInteger.valueOf (7);for (int i = 5; i <= 1000; i++) {ans[i] = ans[i-1].add (ans[i-2].add (ans[i-4]));}while (cin.hasNext ()) {int n = cin.nextInt ();System.out.println (ans[n]);}}public static void main (String[] args) {Main work = new Main();work.solve ();}
}

HDU 1753

高精度小数A+B,要去掉末尾的后导0.

import java.math.*;
import java.util.*;public class Main {void solve () {//BigInteger a, b, c;Scanner cin = new Scanner(System.in);BigDecimal a = BigDecimal.valueOf (0);BigDecimal b = BigDecimal.valueOf (0);while (cin.hasNext ()) {a = cin.nextBigDecimal ();b = cin.nextBigDecimal ();System.out.println (a.add (b).stripTrailingZeros().toPlainString());}}public static void main (String[] args) {Main work = new Main();work.solve ();}
}

 

转载于:https://www.cnblogs.com/upc201713/p/8979347.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/389746.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2027. 转换字符串的最少操作次数

2027. 转换字符串的最少操作次数 给你一个字符串 s &#xff0c;由 n 个字符组成&#xff0c;每个字符不是 ‘X’ 就是 ‘O’ 。 一次 操作 定义为从 s 中选出 三个连续字符 并将选中的每个字符都转换为 ‘O’ 。注意&#xff0c;如果字符已经是 ‘O’ &#xff0c;只需要保持…

bigquery_到Google bigquery的sql查询模板,它将您的报告提升到另一个层次

bigqueryIn this post, we’re sharing report templates that you can build with SQL queries to Google BigQuery data.在本文中&#xff0c;我们将分享您可以使用SQL查询为Google BigQuery数据构建的报告模板。 First, you’ll find out about what you can calculate wit…

分类树/装袋法/随机森林算法的R语言实现

原文首发于简书于[2018.06.12] 本文是我自己动手用R语言写的实现分类树的代码&#xff0c;以及在此基础上写的袋装法&#xff08;bagging&#xff09;和随机森林&#xff08;random forest&#xff09;的算法实现。全文的结构是&#xff1a; 分类树 基本知识predginisplitrules…

数据科学学习心得_学习数据科学时如何保持动力

数据科学学习心得When trying to learn anything all by yourself, it is easy to lose motivation and get thrown off track.尝试自己学习所有东西时&#xff0c;很容易失去动力并偏离轨道。 In this article, I will provide you with some tips that I used to stay focus…

用php当作cat使用

今天&#xff0c;本来是想敲 node test.js 执行一下&#xff0c;test.js文件&#xff0c;结果 惯性的敲成了 php test.js, 原文输出了 test.js的内容。 突然觉得&#xff0c;这东西 感觉好像是 cat 命令&#xff0c;嘿嘿&#xff0c;以后要是ubuntu 上没装 cat &#xff0c; …

建信01. 间隔删除链表结点

建信01. 间隔删除链表结点 给你一个链表的头结点 head&#xff0c;每隔一个结点删除另一个结点&#xff08;要求保留头结点&#xff09;。 请返回最终链表的头结点。 示例 1&#xff1a; 输入&#xff1a;head [1,2,3,4] 输出: [1,3] 解释&#xff1a; 蓝色结点为删除的结点…

python安装Crypto:NomodulenamedCrypto.Cipher

python 安装Crypto时出现的错误:NomodulenamedCrypto.Cipher 首先直接pip install Crypto 这时会在lib/site-packages/ 文件夹下生成crypto文件夹&#xff0c;将其重命名为Crypto ...然而这个文件夹下没有Cipher模块&#xff0c;还需要pip安装一个pycrypto&#xff0c;不过wind…

python多项式回归_在python中实现多项式回归

python多项式回归Video Link影片连结 You can view the code used in this Episode here: SampleCode您可以在此处查看 此剧 集中使用的代码&#xff1a; SampleCode 导入我们的数据 (Importing our Data) The first step is to import our data into python.第一步是将我们的…

Uboot 命令是如何被使用的?

有什么问题请 发邮件至syyxyoutlook.com, 欢迎交流~ 在uboot代码中命令的模式是这个样子&#xff1a; 这样是如何和命令行交互的呢&#xff1f; 在command.h 中, 我们可以看到如下宏定义 将其拆分出来&#xff1a; #define U_BOOT_CMD(name,maxargs,rep,cmd,usage,help) \ U_…

2029. 石子游戏 IX

2029. 石子游戏 IX Alice 和 Bob 再次设计了一款新的石子游戏。现有一行 n 个石子&#xff0c;每个石子都有一个关联的数字表示它的价值。给你一个整数数组 stones &#xff0c;其中 stones[i] 是第 i 个石子的价值。 Alice 和 Bob 轮流进行自己的回合&#xff0c;Alice 先手…

大数据可视化应用_在数据可视化中应用种族平等意识

大数据可视化应用The following post is a summarized version of the article accepted to the 2020 Visualization for Communication workshop as part of the 2020 IEEE VIS conference to be held in October 2020. The full paper has been published as an OSF Preprint…

Windows10电脑系统时间校准

有时候新安装电脑系统&#xff0c;系统时间不对&#xff0c;需要主动去校准系统时间。1、点击时间 2、日期和时间设置 3、其他日期、时间和区域设置 4、设置时间和日期 5、Internet 时间 6、点击立即更新&#xff0c;如果更新失败就查电脑是否已联网&#xff0c;重试点击立即更…

webpack问题

Cannot find module webpack/lib/node/NodeTemplatePlugin 全局&#xff1a;npm i webpack -g npm link webpack --save-dev 转载于:https://www.cnblogs.com/doing123/p/8994269.html

397. 整数替换

397. 整数替换 给定一个正整数 n &#xff0c;你可以做如下操作&#xff1a; 如果 n 是偶数&#xff0c;则用 n / 2替换 n 。 如果 n 是奇数&#xff0c;则可以用 n 1或n - 1替换 n 。 n 变为 1 所需的最小替换次数是多少&#xff1f; 示例 1&#xff1a; 输入&#xff1a;…

pd种知道每个数据的类型_每个数据科学家都应该知道的5个概念

pd种知道每个数据的类型意见 (Opinion) 目录 (Table of Contents) Introduction 介绍 Multicollinearity 多重共线性 One-Hot Encoding 一站式编码 Sampling 采样 Error Metrics 错误指标 Storytelling 评书 Summary 摘要 介绍 (Introduction) I have written about common ski…

td

单元格td设置padding&#xff0c;而不能设置margin。转载于:https://www.cnblogs.com/fpcbk/p/9617629.html

清除浮动的几大方法

对于刚接触到html的一些人经常会用到浮动布局&#xff0c;但对于浮动的使用和清除浮动来说是大为头痛的&#xff0c;在这里介绍几个关于清除浮动的的方法。如果你说你要的就是浮动为什么要清除浮动的话&#xff0c;我就真的无言以对了&#xff0c;那你就当我没说。 关于我们在布…

xgboost keras_用catboost lgbm xgboost和keras预测财务交易

xgboost kerasThe goal of this challenge is to predict whether a customer will make a transaction (“target” 1) or not (“target” 0). For that, we get a data set of 200 incognito variables and our submission is judged based on the Area Under Receiver Op…

2017. 网格游戏

2017. 网格游戏 给你一个下标从 0 开始的二维数组 grid &#xff0c;数组大小为 2 x n &#xff0c;其中 grid[r][c] 表示矩阵中 (r, c) 位置上的点数。现在有两个机器人正在矩阵上参与一场游戏。 两个机器人初始位置都是 (0, 0) &#xff0c;目标位置是 (1, n-1) 。每个机器…

HUST软工1506班第2周作业成绩公布

说明 本次公布的成绩对应的作业为&#xff1a; 第2周个人作业&#xff1a;WordCount编码和测试 如果同学对作业成绩存在异议&#xff0c;在成绩公布的72小时内&#xff08;截止日期4月26日0点&#xff09;可以进行申诉&#xff0c;方式如下&#xff1a; 毕博平台的第二周在线答…