码迷,mamicode.com
首页 > 其他好文 > 详细

51nod 1005 大数加法

时间:2017-08-05 21:11:23      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:class   group   put   next   输出   port   color   dem   family   

 
基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题
 
Input
第1行:大数A
第2行:大数B
(A,B的长度 <= 10000 需注意:A B有可能为负数)
 
Output
输出A + B
 
Input示例
68932147586
468711654886
 
Output示例
537643802472

Java在处理大数据方面很具有优势~~~~~~~~~~~~~~~~~~~

import java.math.BigInteger;
import java.util.Scanner;

public class Demo01 {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		BigInteger integer = new BigInteger(scanner.nextLine().trim());
		BigInteger integer2 = new BigInteger(scanner.nextLine().trim());
		integer = integer.add(integer2);
		System.out.print(integer);
	}
}

  

 

51nod 1005 大数加法

标签:class   group   put   next   输出   port   color   dem   family   

原文地址:http://www.cnblogs.com/z-712/p/7291306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!