-코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] chess = {1, 1, 2, 2, 2, 8};
int[] myChess = new int[6];
int n;
for (int i = 0; i < chess.length; i++) {
myChess[i] = sc.nextInt();
}
for (int i = 0; i < chess.length; i++) {
n = chess[i] - myChess[i];
System.out.print(n + " ");
}
}
}
'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
[백준/Java] 5537번 웰컴 (0) | 2022.04.10 |
---|---|
[백준/Java] 3046번 R2 (0) | 2022.04.10 |
[백준/Java] 2914번 저작권 (0) | 2022.04.10 |
[백준/Java] 2845번 파티가 끝나고 난 뒤 (0) | 2022.04.10 |
[백준/Java] 2558번 A+B - 2 (0) | 2022.04.09 |