91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么在數組中插一個數

小億
203
2024-04-12 09:35:08
欄目: 編程語言

要在數組中插入一個數,可以先創建一個新的數組,然后將原數組中的元素復制到新數組中,同時在要插入的位置插入新的數值。以下是一個示例代碼:

public class Main {
    public static void main(String[] args) {
        int[] originalArray = {1, 2, 3, 4, 5};
        int insertValue = 10;
        int insertIndex = 2; // 要在第2個位置插入數值10

        int[] newArray = new int[originalArray.length + 1];

        for (int i = 0, j = 0; i < newArray.length; i++) {
            if (i == insertIndex) {
                newArray[i] = insertValue;
            } else {
                newArray[i] = originalArray[j];
                j++;
            }
        }

        // 打印新數組
        for (int num : newArray) {
            System.out.print(num + " ");
        }
    }
}

在上面的示例代碼中,我們在數組中的第2個位置插入了數值10,最終打印出了新的數組。

0
秀山| 甘谷县| 营口市| 兴国县| 金沙县| 淅川县| 聊城市| 类乌齐县| 双峰县| 香港| 英德市| 新沂市| 应城市| 万州区| 中卫市| 红桥区| 胶州市| 莒南县| 宾川县| 古浪县| 洪雅县| 海口市| 东莞市| 隆安县| 新沂市| 手游| 庆阳市| 黑水县| 龙南县| 曲阳县| 皋兰县| 元阳县| 望城县| 托克逊县| 翁源县| 塘沽区| 社旗县| 景洪市| 和顺县| 广汉市| 扶风县|