Java/Baekjoon
-
[Baekjoon] 1932번 정수 삼각형(Java)Java/Baekjoon 2022. 8. 23. 23:14
package baekjoon; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int num = Integer.parseInt(br.readLine()); String[][] str = new String[num][]; int[][] intArr = new int[num][num]; for(int i = 0; i <..