• 2022-06-28
    (是否排好序了)编写以下方法。如果参数中的list数组已经按照升序排好了,则返回true,public static boolean isSorted(int[] list)编写一个测试程序,提示用户输入一个列表,显示该列表是否已经排好序。下面是一个运行示例。注意,输入中的第一个数表示列表中的元素个数。该数不是列表的一部分。Enter list:8 10 1 5 16 61 9 11 1The list is not sortedEnter list:10 1 1 3 4 4 5 7 9 11 21The list is already sorted