[Dart 기초8] 논리연산자

코덩이·2023년 5월 10일
0

Dart

목록 보기
8/18
post-thumbnail

논리연산자

void main(){
  // && - and 조건
  bool result = 12 > 10 && 1 > 0;
  
  print(result);
  
  bool result2 = 12 > 10 && 0 > 1;
  
  print(result2);
  
  // || - or 조건
  bool result3 = 12 > 10 || 1 > 0;
  
  print(result3);
  
  bool result4 = 12 > 10 || 0 > 1;
  
  print(result4);
  
  bool result5 = 12 < 10 || 0 > 1;
  
  print(result5);
  
  
}

출력결과

true
false
true
true
false

profile
개발공부중

0개의 댓글