数组的增、删、查
数组的添加
public class TestArray6 {
public static void main(String [] args){
//使用数组存储分数
int [] scoreArr = {75,87,56,45,89,100,76,34,0,0};
//添加之前输出
System.out.println(“添加前”);
for(int score :scoreArr){
System.out.print(score+"\t");
}
//3.在索引为4的位置添加90
int index =
原创
2020-07-18 19:36:52 ·
105 阅读 ·
0 评论