[JAVA] 3. 연산자 Ⅲ. 관계

최재원's avatar
Feb 04, 2025
[JAVA] 3. 연산자 Ⅲ. 관계
notion image
public class CompOperator { public static void main(String[] args) { System.out.println(3 == 4); System.out.println(3 != 4); System.out.println(3 > 4); System.out.println(4 > 3); System.out.println(3 == 3 && 4 == 7); System.out.println(3 == 3 || 4 == 7); } }
notion image
 
Share article

jjack1