이차원배열_입력한 값과 답을 비교하고 총점 출력
package 이차원배열; import java.util.Scanner; public class Ex_연습장 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[][] answer = { {4, 5, 4, 1, 2} , {0, 0, 0, 0, 0} , {10, 20, 30, 20 , 20} }; for(int i = 0; i > "); answer[1][i] = sc.nextInt(); } System.out.println(); int sum = 0; for(int i = 0; i < 5; i++) { if..
2023. 3. 3.