亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java如何打印數組的值

小億
135
2024-01-18 17:41:08
欄目: 編程語言

在Java中,可以使用for循環遍歷數組,并使用System.out.println()方法打印數組的值。

以下是一種常見的方法:

public class PrintArray {
   public static void main(String[] args) {
      // 定義一個整型數組
      int[] numbers = {1, 2, 3, 4, 5};

      // 使用for循環遍歷數組并打印每個元素的值
      for (int i = 0; i < numbers.length; i++) {
         System.out.println(numbers[i]);
      }
   }
}

輸出結果:

1
2
3
4
5

另一種方法是使用增強的for循環(也稱為for-each循環):

public class PrintArray {
   public static void main(String[] args) {
      // 定義一個整型數組
      int[] numbers = {1, 2, 3, 4, 5};

      // 使用增強的for循環遍歷數組并打印每個元素的值
      for (int number : numbers) {
         System.out.println(number);
      }
   }
}

輸出結果與上述方法相同。

0
虞城县| 察哈| 南乐县| 洛南县| 临邑县| 汝阳县| 青浦区| 抚宁县| 贡嘎县| 绿春县| 界首市| 亚东县| 屏东市| 辉县市| 塔城市| 太湖县| 当雄县| 普宁市| 东明县| 汕头市| 新乐市| 张家界市| 博爱县| 九龙城区| 浦北县| 沧州市| 肥东县| 上杭县| 合作市| 安顺市| 绥芬河市| 长岭县| 额济纳旗| 池州市| 新安县| 石河子市| 岢岚县| 乌苏市| 兴文县| 安达市| 惠水县|