안녕하세요 자바칩 프라푸치노입니다. 오늘은 난수를 발생시켜서 그 시간에 무엇을 해야하는지 확인하는 코드를 만들어보겠습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 package sec01_exam; public class SwitchEx { public static void main(String[] args) { // time의 난수 범위 : 8~11 int time = (int)(Math.random() * 4) + 8; switch (time) { case 8: System.out.println("출근합니다."); break; case 9: System.out.println("회의를 진행합니..