public class HelloWorld { public static void main(String[] args) { // 定义一个整型数组,并赋初值 int[] nums = new int[] { 61, 23, 4, 74, 13, 148, 20 }; int max = nums[0]; // 假定最大值为数组中的第一个元素 int min = nums[0]; // 假定最小值为数组中的第一个元素 dou
想知道哪儿错了
提问者:慕圣65494942020-10-03 21:21
个回答
Chris丨
2021-01-14 22:34:47
public class HelloWorld {
public static void main(String[] args) {
int[] nums =new int[]{61,23,4,74,13,148,20};
int max = nums[0];
int min = nums[0];
}
}