标签:cores 存储 exti sys 数组 scanner 组元 core input
什么是数组:
声明一个变量就是在内存空间划出一块合适的空间
声明一个数组就是在内存空间划出一串连续的空间
数组是一个变量,存储 相同数据类型 的一组数据
数组基本要素:标识符(自定义名字)
数组元素(自定义内容)
元素下标(由0开始)(元素的顺序)
元素类型(数字,字母,boolean)
如何使用数组:例子:
int [ a ] = new int [ 5 ];(定义数组:声明数组+分配空间)
a [ 0 ] = 8;(给数组赋值)
a [ 0 ] = a [ 0 ] *10;(整理数据)
数组赋值方法:1.int [ ] score = { 89, 79, 76 };(第一种语句)
int [ ] score = new int [ ] { 89, 79, 76 };(第二种语句)
【定态赋值】
2.Scanner input = new Scanner(System,in);
for(int i=0;i<30;i++){
scores [ i ] = input.nextInt();
}
【动态输入】
标签:cores 存储 exti sys 数组 scanner 组元 core input
原文地址:https://www.cnblogs.com/ShingJoseph/p/14943951.html