1.定义一个长度为10的int数组,统计数组的最大值、最小值、奇数和偶数的个数
//提示:两两比较,如果大就互换一下,一直比较到最后一个数,反之亦然;偶数是余2等于0,其他的就是奇数。
public class Test1 {
public static void main(String[] args) {
int[] arr = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int max = arr[0];
int min = arr[1];
for (int i = 0; i < arr.length; i++) {
if (max < arr[i]) {
max = arr[i];
} else if (min > arr[i]) {
min = arr[i];
}
}
System.out.println("数组的最大值是" + max + "数组的最小值是" + min);
int count1 = 0;
int count2 = 0;
for (int j = 0; j < arr.length; j++) {
if (j % 2 != 0) {
count1++;
}