멘토링 문제 4중for문
다들 자랑하셨길래 저도 한번 자랑해봅니다 ;) package second_section; import java.util.Scanner; public class Codetest12_0 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[][] arr = new int[m][n+1]; // [시험수][사람수] for (int i = 0; i