if문으로 수, 우, 미, 양, 가 출력하기 조건식을 여러 개 지정하는 if문이다. 조건식이 true를 반환하면 해당 조건식블록의 명령 문장이 실행된다.123456789101112131415161718public class example1 { public static void main(String[] args) { double score = Math.random()*101; if(score>=90) { System.out.println(score + "점 이상은 '수'입니다."); } else if(score>=90) { System.out.println(score + "점은 '수'입니다."); } else if(score>=80) { System.out.println(score + "점은 '우'입니다...