import java.util.Scanner; //스캐너 있음 public class Program { public static void main(String[] args) throws Exception { //throw Exception** for(int i=10; i>=1; i--){ //10회 카운트다운 int count = i;//count에 i 값 저장 Scanner scan = new Scanner(System.in); System.out.println("1부터 10까지 뽑은 후 enter (남은 횟수" + count + ") : "); //입력창 int score=scan.nextInt(); //Enter 누르면 score에 입력된 수 저장 int j = (int)(Math.random()*..