JAVA创建一维数组,为其赋值,输出下标和相应元素的值
时间: 2023-05-11 07:03:44 浏览: 109
Java语言编程 一维数组
好的,以下是JAVA创建一维数组,为其赋值,输出下标和相应元素的值的代码:
```
public class Main {
public static void main(String[] args) {
int[] arr = {1, 2, 3, 4, 5};
for (int i = 0; i < arr.length; i++) {
System.out.println("Index " + i + ": " + arr[i]);
}
}
}
```
输出结果为:
```
Index 0: 1
Index 1: 2
Index 2: 3
Index 3: 4
Index 4: 5
```
阅读全文