킹, 퀸, 룩, 비숍, 나이트, 폰 (3003) 풀이
문제내용 사용자에게 정수 리스트를 입력받아 각각 킹, 퀸, 룩, 비숍, 나이트, 폰 개수와 비교하여 차이를 출력하는 문제이다. 풀이 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}; for(int i = 0; i < chess.length; i++){ chess[i] -= sc.nextInt(); } for(int i = 0; i< chess.length; i++){ System.out.println(chess[i]); } } } 사용자에게 정수를 입력받기 위해 Scanner를 사용해..
2023.06.22