# if-else 문, 둘 중 하나! #### CODE <a class='btn btn-default' href='/codes/66270'>Link</a> ``` public class Tobacco { public static void main(String[] args) {**strong text** buy(15); // 15세, 담배 구매 시도 buy(19); // 19세.. buy(22); // 22세.. } public static void buy(int age) { // 변수 생성 String result = ""; // 조건에 따른 결과 생성 if(age>=19) { result = "O"; } else { result = "x"; /* 2. 적절한 값을 넣으세요. */ } // 결과 출력 System.out.printf("%d세 => 담배판매(%s)\n", age, result); } } ``` #### INPUT ``` ``` #### OUPUT ``` 15세 => 담배판매(x) 19세 => 담배판매(O) 22세 => 담배판매(O) ```
## x를 대문자로 바꿔보세영 👻
감사합니다.