黑马程序员技术交流社区
标题:
#不死神兔问题(数组遍历求和)
[打印本页]
作者:
SolomonY
时间:
2018-8-14 23:05
标题:
#不死神兔问题(数组遍历求和)
package fuqu.Test;
import java.util.*;
public class test {
public static void main(String[] args) {
int[] arr = new int[50000];
arr[0] = 1;
int num=1;
for(int i = 1;i<=19;i++){
int count=0;
for(int c = 0;c<num;c++){
arr[c]+=1;
}
for(int j = 0;j<num;j++){
if(arr[j]>2){
arr[num]=1;
count+=1;
}
}
for(int k =0;k<count;k++){
arr[num+k+1]=1;
}
num+=count;
}
System.out.println(num);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2