码迷,mamicode.com
首页 > 编程语言 > 详细

POJ 3982 序列(JAVA,简单,大数)

时间:2014-05-01 21:32:08      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   ext   color   get   int   string   

题目

 

//在主类中 main 方法必须是 public static void 的,在 main 中调用非static类时会有警告信息, 
//可以先建立对象,然后通过对象调用方法:
 

 

mamicode.com,码迷
import java.io.*;
import java.util.*;
import java.math.*;

public class Main {

    /**
     * @xqq
     */
    public BigInteger a99(BigInteger a, BigInteger b, BigInteger c) {
        for(int i = 0; i < 97; i++) {
            BigInteger d = a.add(b.add(c));
            a = b;
            b = c;
            c = d;
        }
        return c;
    }
    public static void main(String[] args)    throws Exception {
        // 定义并打开输入文件
        Main e = new Main();
        Scanner cin = new Scanner(System.in);
            
        BigInteger a;
        BigInteger b; 
        BigInteger c;
            
        while(cin.hasNext()) {  //判断是否输入结束
            a = cin.nextBigInteger() ; //大数输入
            b = cin.nextBigInteger() ; //大数输入
            c = cin.nextBigInteger() ; //大数输入    
            System.out.println(e.a99(a, b, c));
        
        }
        
        cin.close();  //关闭输入文件
    }
}
View Code

 

POJ 3982 序列(JAVA,简单,大数),码迷,mamicode.com

POJ 3982 序列(JAVA,简单,大数)

标签:style   blog   class   code   java   tar   ext   color   get   int   string   

原文地址:http://www.cnblogs.com/laiba2004/p/3702576.html

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