public static void main(String[] args) { int score = 0; Scanner scan = new Scanner(System.in); System.out.print("점수를 입력: "); score = scan.nextInt(); if(score >= 90) { System.out.println("A+"); } else if(score >= 80) { System.out.println("B+"); } else if(score >= 70) { System.out.println("c+"); } } 2번줄 - 정수형 변수 SCORE를 0으로 선언 및 초기화 해준다. 3번줄 - SCANNER를 사용하여 값을 입력 받을 수 있게 해준다. 4번줄 - SYSTEM.OUT.PRINT..