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

HDOJ-1002

时间:2014-10-10 21:35:54      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   sp   

用java写大数,感觉就是BUG

bubuko.com,布布扣
 1 import java.math.*;
 2 import java.io.*;
 3 import java.util.*;
 4 public class Main{
 5     public static void main(String[] args){
 6         Scanner sc = new Scanner(System.in);
 7         BigDecimal f1, f2;
 8         int c = Integer.parseInt(sc.next());
 9         int i = 1;
10         while(sc.hasNext()){
11             
12             f1 = new BigDecimal(sc.next());
13             f2 = new BigDecimal(sc.next());
14             System.out.println("Case " + i + ":");
15             System.out.println(f1 + " + " + f2  + " = " + f1.add(f2) );
16             if(i < c)
17                 System.out.println();
18             //System.out.println(f1.subtract(f2));
19             //System.out.println(f1.multiply(f2));
20             //System.out.println(f1.divide(f2));
21             i++;
22             if(i > c)    break;
23         }
24         
25     }
26 }
View Code

 

HDOJ-1002

标签:style   blog   http   color   io   os   ar   java   sp   

原文地址:http://www.cnblogs.com/ya-cpp/p/4017706.html

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