溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java數(shù)組中如何刪除scores數(shù)組索引index位置的值

發(fā)布時間:2022-01-11 14:29:20 來源:億速云 閱讀:222 作者:柒染 欄目:編程語言

Java數(shù)組中如何刪除scores數(shù)組索引index位置的值,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

/**
題目: 刪除scores數(shù)組索引index位置的值
思路:
	1. 創(chuàng)建一個臨時比scores 小1的臨時數(shù)組tempArray
	2. 將index前面的數(shù)據(jù)復(fù)制到tempArray前面
	3. 將index后面的數(shù)組依次復(fù)制到 tempArray 后面
	4. 將tempArray地址指針引用賦值給 scores
	5. 打印輸出scores
*/import java.util.Scanner;public class ArrayDelete {	
	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();		//1. 創(chuàng)建一個臨時比scores 小1的臨時數(shù)組tempArray
		int[] tempArray = new int[scores.length - 1];		//2. 將index前面的數(shù)據(jù)復(fù)制到tempArray前面
		//3. 將index后面的數(shù)組依次復(fù)制到 tempArray 后面
		for (int i = 0; i < scores.length; i++) {			if (i < index)
				tempArray[i] = scores[i];			if (i > index)
				tempArray[i - 1] = scores[i];
		}		//4. 將tempArray地址指針引用賦值給 scores
		scores = tempArray;		//5.打印輸出scores
		for (int i = 0; i < scores.length; i++) {
			System.out.print(scores[i] + ",");
		}
	}
}

看完上述內(nèi)容,你們掌握Java數(shù)組中如何刪除scores數(shù)組索引index位置的值的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責(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)容。

AI