码迷,mamicode.com
首页 > 编程语言 > 详细

云课堂数组1

时间:2017-07-15 17:59:37      阅读:148      评论:0      收藏:0      [点我收藏+]

标签: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;

 

云课堂数组1

标签:input   int()   nbsp   数据类型   [1]   scanner   大小   sys   处理   

原文地址:http://www.cnblogs.com/zhangisqiang/p/7183391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!