package wzybf; import java.util.Arrays; public class IntSort { // 对两个数进行排序输出 public static void sort(int a, int b) { if (a > b) { System.out.println(b + " " + a); } else { System.out.println(a + " " + b); } } // 对三个数进行排序输出 public static void sort(int a, int b, int c) { if (a > b) { int temp = a; a = b; b = temp; } if (a > c) { int temp = a; a = c; c = temp; } if (b > c) { int temp = b; b = c; c = temp; } System.out.println(a + " " + b + " " + c); } // 对数组进行排序输出 public static void sort(int[] arr) { Arrays.sort(arr); for (int num : arr) { System.out.print(num + " "); } System.out.println(); } public static void main(String[] args) { IntSort.sort(5, 3); IntSort.sort(2, 4, 1); IntSort.sort(new int[]{5, 4, 6, 2, 8, 1}); } }重要变量的定义和作用
时间: 2024-02-10 10:33:28 浏览: 50
java代码-import java.util.Scanner;
该代码中并没有重要的变量定义,只有三个方法和一个main函数。
方法sort(int a, int b)可以对两个整数进行排序输出,如果a大于b,则输出b和a,否则输出a和b。
方法sort(int a, int b, int c)可以对三个整数进行排序输出,先通过两两比较将最小值放在第一个位置,再通过两两比较将次小值放在第二个位置,最后输出三个数。
方法sort(int[] arr)可以对一个整型数组进行排序输出,使用Arrays.sort()方法对数组进行排序,然后遍历输出每个元素。
main函数中调用了这三个方法,对不同的输入进行排序输出。
阅读全文