문제

https://www.acmicpc.net/problem/3003


문제 풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int[] chess = {1, 1, 2, 2, 2, 8};

        int[] tmp = new int[chess.length];
        for (int i = 0; i < chess.length; i++) {
            tmp[i] = chess[i] - sc.nextInt();
        }

        for(int num : tmp){
            System.out.print(num+" ");
        }
    }
}

카테고리:

업데이트:

댓글남기기