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

zoj Fibonacci Numbers ( java , 简单 ,大数)

时间:2014-05-01 18:55:52      阅读:450      评论:0      收藏:0      [点我收藏+]

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

题目

 

//f(1) = 1, f(2) = 1, f(n > 2) = f(n - 1) + f(n - 2)

 

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

public class Main {

    /**
     * @xqq
     */
    public BigInteger an(int n) {
        BigInteger c;
        BigInteger a = BigInteger.valueOf(1);
        BigInteger b = BigInteger.valueOf(1);
        
        for(int i = 1; i < n; i++) {
            c = a.add(b);
            a = b;
            b = c;
        }
        return a;
    }
    public static void main(String[] args)    throws Exception {
        // 定义并打开输入文件
        Scanner cin = new Scanner(System.in);
        
        Main e = new Main();
        int n;
        
        while(cin.hasNext()) {
            n = cin.nextInt();    
            System.out.println(e.an(n));
        }
        
        cin.close();  //关闭输入文件
    }
}
View Code

 

zoj Fibonacci Numbers ( java , 简单 ,大数),码迷,mamicode.com

zoj Fibonacci Numbers ( java , 简单 ,大数)

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

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

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