4.18作业合集
Posted LWJDD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4.18作业合集相关的知识,希望对你有一定的参考价值。
① 10个数字 , 前一位数字加后一位数字等于第三位数字 1开始
public class Test01{
public static void main(String [] args){
int [] scores=new int[12];
for(int i=0;i<scores.length-2;i++){
scores[0]=1;
scores[1] =1;
scores[i+2]=scores[i]+scores[i+1];
System.out.println(scores[i])
}
}
}
②第二题比较简单 累加的count 得先赋值 int count=0;
之后在循环顶部写入 count++; 用于算出次数
以上是关于4.18作业合集的主要内容,如果未能解决你的问题,请参考以下文章
机器学习- 吴恩达Andrew Ng Coursera学习总结合集,编程作业技巧合集