본문 바로가기

JAVA

논리 연산자

//논리 연산자
// 논리연산자는 두개의 boolean에 대해 연산한다.
// ! && ||
// !: true는 false로 false는 true로 바꿔라
// &&: AND 연산. 2개가 true일 때만 true.
// ||: OR 연산. 2개중 하나 이상이 true면 true.
public class Ex06Operator {
public static void main(String[] args) {
boolean b1 = 5 > 10; //false
boolean b2 = 5 > 1; //true
System.out.println(b1 && b2);
System.out.println(b1 || b2);
System.out.println(!b1);

}
}

'JAVA' 카테고리의 다른 글

조건문  (0) 2020.04.23
스캐너  (0) 2020.04.23
비교 연산자  (0) 2020.04.23
증감 연산자  (0) 2020.04.23
연산자  (0) 2020.04.23