博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How many Fibs?
阅读量:5300 次
发布时间:2019-06-14

本文共 1451 字,大约阅读时间需要 4 分钟。

题意:第一次用java写代码。。纪念一下。。虽然写的有点挫。。

1 import java.math.BigInteger; 2 import java.util.Scanner; 3  4  5 public class Main { 6  7         public static void main(String[] args) { 8         9          Scanner cin = new Scanner(System.in);10          while(cin.hasNext()){11              int cnt = 0;12              BigInteger l = cin.nextBigInteger();13              BigInteger r = cin.nextBigInteger();14              int t1 = l.compareTo(BigInteger.ZERO);15              int t2 = r.compareTo(BigInteger.ZERO);16              if (t1==0&&t2==0)17                  break;18              BigInteger f1 = BigInteger.valueOf(1);19              BigInteger f2 = BigInteger.valueOf(2);20              int s1 = l.compareTo(f1);21              int s2 = r.compareTo(f1);22              if(s1<=0&&s2>=0)23                  cnt++;24              s1 = l.compareTo(f2);25              s2 = r.compareTo(f2);26              if(s1<=0&&s2>=0)27                  cnt++;28              while(true)29              {30                 BigInteger f = f1.add(f2);31                 s1 = l.compareTo(f);32                 s2 = r.compareTo(f);33                 if(s1<=0&&s2>=0)34                      cnt++;35                 if (s2 < 0)36                     break;37                 f1 = f2; 38                 f2 = f;39              }40              System.out.println(cnt);41              42          }43     }44 45 }
View Code

 

转载于:https://www.cnblogs.com/lahblogs/p/3644091.html

你可能感兴趣的文章
Python数据分析入门案例
查看>>
vue-devtools 获取到 vuex store 和 Vue 实例的?
查看>>
Linux 中【./】和【/】和【.】之间有什么区别?
查看>>
内存地址对齐
查看>>
看门狗 (监控芯片)
查看>>
#ifndef #define #endif
查看>>
css背景样式
查看>>
JavaScript介绍
查看>>
正则表达式
查看>>
开源网络漏洞扫描软件
查看>>
yum 命令跳过特定(指定)软件包升级方法
查看>>
创新课程管理系统数据库设计心得
查看>>
Hallo wolrd!
查看>>
16下学期进度条2
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
Chapter 3 Phenomenon——12
查看>>
C语言中求最大最小值的库函数
查看>>
和小哥哥一起刷洛谷(1)
查看>>
jquery对id中含有特殊字符的转义处理
查看>>
遇麻烦,Win7+Ubuntu12.10+Archlinux12.10 +grub
查看>>