📄 basicarray.java
字号:
//********************************************************************
// BasicArray.java Author: Lewis/Loftus
//
// Demonstrates basic array declaration and use.
//********************************************************************
public class BasicArray
{
//-----------------------------------------------------------------
// Creates an array, fills it with various integer values,
// modifies one value, then prints them out.
//-----------------------------------------------------------------
public static void main (String[] args)
{
final int LIMIT = 15, MULTIPLE = 10;
int[] list = new int[LIMIT];
// Initialize the array values
for (int index = 0; index < LIMIT; index++)
list[index] = index * MULTIPLE;
list[5] = 999; // change one array value
// Print the array values
for (int value : list)
System.out.print (value + " ");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -