https://www.acmicpc.net/problem/3003
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] check = {1, 1, 2, 2, 2, 8};
int[] input = new int[6];
for(int i =0 ; i < check.length ; i++ ){
input[i] = sc.nextInt();
System.out.print( check[i] - input[i] + " " );
}
}
}
'프로그래밍언어 > 알고리즘' 카테고리의 다른 글
백준 1157 단어 공부_JAVA (0) | 2023.07.14 |
---|---|
백준 10988 팰린드롬인지 확인하기_JAVA (0) | 2023.06.15 |
백준 25083 새싹_JAVA (0) | 2023.06.08 |
백준 11718 그대로 출력하기_JAVA (0) | 2023.06.08 |
백준 5622 다이얼_JAVA (0) | 2023.06.08 |