java处理大数a+b模板

例题;

sdnuoj 1113

1113.A+B

Time Limit: 1000 MS    Memory Limit: 32768 KB
Total Submission(s): 107    Accepted Submission(s): 45

Description

给定两个整数A和B,其表示形式是:从个位开始,每三位数用逗号","隔开。
现在请计算A+B的结果,并以正常形式输出。

Input

输入包含多组数据数据,每组数据占一行,由两个整数A和B组成(-10^9 < A,B < 10^9)。

Output

请计算A+B的结果,并以正常形式输出,每组数据占一行。

Sample Input

-234,567,890 123,456,789
1,234 2,345,678

Sample Output

-111111101
2346912

代码:

[cpp]  view plain  copy
 
  1. import java.util.Scanner;  
  2. import java.math.BigInteger;  
  3. public class Main {//类名改成Main--  
  4.     public static void main(String[] args) {  
  5.         // TODO Auto-generated method stub  
  6.         Scanner scan = new Scanner(System.in);//定义文本扫描器的名称   
  7.         int [] num = new int [20];  
  8.         while (scan.hasNextInt())//-判断是否有输入---程序就可以执行到文件结束了  
  9.         {  
  10.             num[1]=scan.nextInt();  
  11.             num[2]=scan.nextInt();  
  12.             num[3]=num[2]+num[1];//在java中 int 类型的加减乘除与c语言是一样的   
  13.             System.out.println(num[3]);//输出并换行---不想换行用System.out.print(num[3]);  
  14.         }  
  15.     }  
  16. }  


你可能感兴趣的:(ACM,ACM-java)