3월6일(수) 사전학습 2일차 public static void main(String[] args) { // // '프로그램의 흐름을 제어한다'라고 해서 제어문이라고 함 // // 1. 조건문 : if, switch // 2. 반복문 : for, while, do-while // 3. 제어문 : break, continue // // 특정 조건을 검사하고 참(true)이면 코드 실행, 거짓(false)이면 실행하지 않음 int num = 100; if(num > 50) { System.out.println("50보다 큽니다."); } Scanner sc = new Scanner(System.in); System.out.print("숫자를 입력 하세요: "); int inputNumber = sc.ne..