inblog logo
|
jay0628
    Java

    [Java] 3.3. 관계 연산자

    김주희's avatar
    김주희
    Feb 04, 2025
    [Java] 3.3. 관계 연산자
    package ex02; public class ComOperator { public static void main(String[] args) { System.out.print((3 == 4) + " "); System.out.print((3 != 4) + " "); System.out.print((3 > 4) + " "); System.out.print((3 < 4) + " "); System.out.print((3 == 3 && 4 == 7) + " "); System.out.print((3 == 3 || 4 == 7) + " "); } }
    notion image
    Share article

    jay0628

    RSS·Powered by Inblog