我正在尝试查找数组中的高数和低数,但我不确定为什么我的代码无法正常工作。它给了我 0 和 56 的输出。我明白为什么它给了 0,但是 56 是从哪里来的?
package test;
public class Test {
public static void main(String[] args) {
int[] numbs = { '2', '4', '2', '8', '4', '2', '5'};
int count = 0;
int low = 0;
int high = 0;
while(count < numbs.length)
{
if(numbs[count]< low) {
low = numbs[count];
}
if(numbs[count]> high) {
high = numbs[count];
}
count++;
}
System.out.println(low);
System.out.println(high);
}
}