inflearn logo
Course

Course

Instructor

Hans Kim's Posts

Hans Kim Hans Kim

@kimhans

Reviews Written
3
Average Rating
5.0

Posts 1

Q&A

멘토링 문제 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

Likes
0
Comments
7
Viewcount
1247