java基础:现在有如下一个数组: int [] oldArr={1,3,4,5,0,0,6,6,0,5,4,7,6,7,0,5};要求将以上数组中的0项去掉,将不为0的值存入一个新的数组,生成新的数
2021-02-06 20:16
标签:static 数组 不为 system 基础 sys string java count import java.util.Arrays; public class HomeWork04_2 { public static void main(String[] args){ int [] oldArr={1,3,4,5,0,0,6,6,0,5,4,7,6,7,0,5}; int [] newArr= new int[oldArr.length]; int count=0; for (int i = 0; i if(oldArr[i]!=0){ newArr[count++]=oldArr[i]; } } java基础:现在有如下一个数组: int [] oldArr={1,3,4,5,0,0,6,6,0,5,4,7,6,7,0,5};要求将以上数组中的0项去掉,将不为0的值存入一个新的数组,生成新的数组为:int [] newArr={1,3,4,5,6,6,5,4,7,6,7,5}; 标签:static 数组 不为 system 基础 sys string java count 原文地址:https://www.cnblogs.com/C33baby/p/12781301.html
newArr = Arrays.copyOf(newArr, count);
System.out.println(Arrays.toString(newArr));
}
}
文章标题:java基础:现在有如下一个数组: int [] oldArr={1,3,4,5,0,0,6,6,0,5,4,7,6,7,0,5};要求将以上数组中的0项去掉,将不为0的值存入一个新的数组,生成新的数
文章链接:http://soscw.com/index.php/essay/51858.html