用java写 一列数的规则如下:1、1、2、3、5、8、13、21、34...... 求第30位
答案:2 悬赏:10 手机版
解决时间 2021-12-25 09:31
- 提问者网友:动次大次蹦擦擦
- 2021-12-25 04:44
用java写 一列数的规则如下:1、1、2、3、5、8、13、21、34...... 求第30位数是多少?
最佳答案
- 五星知识达人网友:愁杀梦里人
- 2021-12-25 06:00
public class Demo {
public static void main(String[] args) {
int a = 1;
int b = 1;
int temp;
int a_count = 1;
while(a_count<=30){
System.out.print(a_count+" ");
System.out.print(a);
System.out.println();
temp = a+b;
a=b;
b=temp;
a_count++;
}
}
} 。。。。
25 75025
26 121393
27 196418
28 317811
29 514229
30 832040
public static void main(String[] args) {
int a = 1;
int b = 1;
int temp;
int a_count = 1;
while(a_count<=30){
System.out.print(a_count+" ");
System.out.print(a);
System.out.println();
temp = a+b;
a=b;
b=temp;
a_count++;
}
}
} 。。。。
25 75025
26 121393
27 196418
28 317811
29 514229
30 832040
全部回答
- 1楼网友:轮獄道
- 2021-12-25 06:26
public class digui{
public static void main(string[] args){
system.out.println(fib(30));
}
public static int fib(int n) {
if (n == 1 || n == 2) {
return 1;
} else {
return fib(n - 1) + fib(n - 2);
}
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯