한 걸음 두 걸음
백준 2490 윷놀이 ] 배열 본문
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int[][] n = new int[3][4];
int[] result = new int[3];
for(int i = 0 ; i < 3; i ++)
for(int j = 0 ; j < 4; j++) {
n[i][j] = sc.nextInt();
result[i] += n[i][j];}
for(int i = 0 ; i < 3; i ++) {
switch(result[i]) {
case 0: System.out.println("D"); break;
case 1: System.out.println("C"); break;
case 2: System.out.println("B"); break;
case 3: System.out.println("A"); break;
case 4: System.out.println("E"); break;
}
}
}
}
반응형
'CSE > baekjoon & swexpert' 카테고리의 다른 글
백준 그리디 5585 거스름돈 (0) | 2019.04.08 |
---|---|
백준 5613 계산기프로그램 ] 우선순위를 고려하지 않은 순차 계산기 / char입력받기 (0) | 2019.03.29 |
백준 4673 셀프넘버 ] 함수사용 (0) | 2019.03.28 |
백준 12096 문제풀기 ] web html코드 읽기 (0) | 2019.03.27 |
baekjoon 1302 베스트셀러 ] map / key사전순정렬(Treemap자체) (0) | 2019.03.27 |