1. 제어문: 명령의 흐름을 변경하는 명령어if : 조건에 따라 분기를 수행하는 명령어 단순 if 문if 와 elseif 와 if else 와 else ~라면, ~이면 실습) 점수에 따른 결과 출력 (수우미양가)import java.util.Scanner; public class ControlTest { public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.print("점수를 입력하세요: ");int score = sc.nextInt();if(score>=90) {System.out.println("결과: 수");}else if(score>=80) {System.out.println("결과: 우");}e..