标签:input int() nbsp 数据类型 [1] scanner 大小 sys 处理
1.声明数组:
据类型 数组名[]
据类型[] 数组名(一般用这种)
int[] a;
2.分配空间:
数据类型[] 数组名 = new 数据类型[大小];
a=new int[5]
3.赋值
方法一:边声边赋值
int [] score ={89,79,76};
int[] score =new int[]{89,79,76};
a[8]=8;
方法二:动态地从键盘录入信息并赋值
Scanner input = new Scanner(System.in);
for(int i=0; i<30;i++){
score[i] = input.nextInt();
}
4.处理数据
五个数的平均值
avg=(score[0]+score[1]+score[2]+score[3]+score[4]) /5
乘法运算
a[0]=a[0]*10;
标签:input int() nbsp 数据类型 [1] scanner 大小 sys 处理
原文地址:http://www.cnblogs.com/zhangisqiang/p/7183391.html