백준 알고리즘 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 (자바 Java)
문제 출처: https://www.acmicpc.net/problem/3003 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 첫째 줄에 동혁이가 찾은 흰색 킹, 퀸, 룩, 비숍, 나이트, 폰의 개수가 주어진다. 이 값은 0보다 크거나 같고 10보다 작거나 같은 정수이다. www.acmicpc.net 1. 코드 import java.util.*; class Main { public static void main(String[] args){ final int[] chess = {1, 1, 2, 2, 2, 8}; Scanner sc = new Scanner(System.in); int input; for(int num : chess){ input = sc.nextInt(); System.out.print(n..