首页 > 代码库 > POJ 3982 序列(JAVA,简单,大数)
POJ 3982 序列(JAVA,简单,大数)
题目
//在主类中 main 方法必须是 public static void 的,在 main 中调用非static类时会有警告信息,
//可以先建立对象,然后通过对象调用方法:
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(); //关闭输入文件 } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。