표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
public class prog { public static void main(String[] args) { char ch1 = 'b', ch2 = 'B'; boolean result1, result2; result1 = (ch1 > 'a') && (ch1 < 'z') ; result2 = (ch2 < 'A') || (ch2 > 'Z') ; System.out.println("&& 연산자에 의한 결과 : "+ result1); System.out.println("|| 연산자에 의한 결과 : "+ result2); System.out.println("! 연산자에 의한 결과 : "+ !result2); } }