Eggs Sunny Side Up
본문 바로가기
언어/JAVA

이차원배열_입력한 값과 답을 비교하고 총점 출력

by guswn100059 2023. 3. 3.

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].length; i++) {
			System.out.print((i+1)+"번째 답 >> ");
			answer[1][i] = sc.nextInt();
		}
		System.out.println();
		
		int sum = 0;
		
		for(int i = 0; i < 5; i++) {
			if(answer[1][i] == answer[0][i]) {
				System.out.print("O"+" ");
				sum += answer[2][i];
			} else {
				System.out.print("X"+" ");
			}
		}
		System.out.println();
		
		System.out.println("총점 : "+ sum);
			
		
		
		// 0.0 == 1.0
		// 0.1 == 1.1
		// 0.2 == 1.2
		// 0.3 == 1.3
		// 0.4 == 1.4
		
		

	}

}

댓글