다음 코드는 비교 연산자와 논리 연산자의 복합 연산식입니다. 연산식의 출력 결과를 괄호() 속에 넣으세요.
public class q7 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int x = 10;
int y = 5;
System.out.println((x > 7) && (y <= 5)); // ( )
System.out.println((x % 3 == 2) || (y % 2 != 1)); // ( )
}
}
실행결과
풀이
&& 연산자는 두 개의 값이 모두 참일 때 true
|| 연산자는 두 개중 하나의 값이라도 참이면 true
x > 7 : true
y <= 5 : true 이므로 true 출력
x % 3 == 2 : false
y % 2 != 1 : false 이므로 false 출력