尝试了几件事。我需要遍历一个双精度数组。并将每个元素四舍五入到最接近的整数。有什么想法我哪里出错了吗?
for(int i = 0; i < example.length; i++){
Math.round(example[i]);
}
int[] example1 = new int[example.length];
for(int i=0; i<example1.length; i++) {
Math.round(example1[i]);
example1[i] = (int) example[i];
}