将1到10,10个数放到一个数组中
package com.fqs.demo; public class fangArray { public static void main(String[] args) { //将1到10的数放数组中 int array[]= new int[10] ;//定义一个固定长度的数组 for(int index=0;index<10;index++) {//循环将1,2,3...9放入数组中 array[index]=index+1; System.out.println("array[index]:"+array[index]); } } }
标签:个值,10,index,int,数组,public From: https://www.cnblogs.com/haha1988/p/17058705.html