题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
输入整型数组和排序标识,对其元素按照升序或降序进行排序
http://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309
// 先使用Arrays排序,再根据升序(降序输出)
import java.util.Scanner; import java.util.Arrays; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 注意 hasNext 和 hasNextLine 的区别 while (sc.hasNext()) { // 注意 while 处理多个 case int n =sc.nextInt(); int[] num = new int[n]; for(int m=0;m<n;m++){ num[m] =sc.nextInt(); }
Arrays.sort(num);
int flag =sc.nextInt();
if(flag==1){
for(int k=0;k<num.length;k++){
System.out.print(num[num.length-1-k]+" ");
}
}
else if(flag==0){
for(int k=0;k<num.length;k++){
System.out.print(num[k]+" ");
}
}
}
}
}