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

hdu1753

时间:2014-08-09 18:35:28      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   java   os   io   art   

bubuko.com,布布扣
import java.math.*;
import java.util.*;
import java.io.*;
public class hdu1753 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner sc = new Scanner(new BufferedInputStream(System.in));
        BigDecimal a,b,ans;
        while(sc.hasNext())
        {
            a = sc.nextBigDecimal();
            b = sc.nextBigDecimal();
            ans = a.add(b).stripTrailingZeros();
            System.out.println(ans.toPlainString());
        }
    }

}
View Code

 

hdu1753,布布扣,bubuko.com

hdu1753

标签:style   blog   http   color   java   os   io   art   

原文地址:http://www.cnblogs.com/syzhd/p/3901346.html

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