백준 오답노트/정렬
백준 - 정렬 2751번 문제 틀린 이유 + 해결
package 정렬.silver; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] numbers = new int[n]; int temp = 0; for (int i = 0; i < numbers.length; i++) { numbers[i] = scanner.nextInt(); } for (int i = 0; i < numbers.length - 1; i++) { for (int j = i + 1; j < numbers.length; j++) { if (number..