您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Java數(shù)組中一維數(shù)組如何修改元素的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
/** 修改scores數(shù)組索引index位置的值為value */import java.util.Scanner;public class ArrayUpdate { public static void main(String[] args) { //一維數(shù)組的定義和初始化 int[] scores = { 90, 70, 50, 80, 60, 85 }; System.out.println("請輸入要修改的索引位置 index : "); Scanner in = new Scanner(System.in); int index = in.nextInt(); System.out.println("請輸入要修改的值 value : "); int value = in.nextInt(); //修改 scores[index] = value; //打印輸出scores for (int i = 0; i < scores.length; i++) { System.out.print(scores[i] + ","); } } }
感謝各位的閱讀!關(guān)于“Java數(shù)組中一維數(shù)組如何修改元素”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。