📝and, or, 조건문(if) 다루기
아래 코드처럼 자바는 and를 &&, or을 ||로 표시한다
값은 true, false로 반환된다
int a = 10;
int b = 20;
int c = 30;
int d = 25;
System.out.println(a == 10 && c == d);
System.out.println(a > 10 && c != d);
System.out.println(a == 10 || c == d);
System.out.println(a != 10 || c == d);
자바의 조건문은 if 다음 조건을 괄호에 입력주고 true일때 실행할 결과값을 { } 안에 입력해준다
추가 조건문은 else if로 입력하고 그렇지 않을때(모두 일치하지 않을때) else로 조건문을 끝낸다
if (a > 10) {
System.out.println("Hello");
} else {
System.out.println("Bye");
}
int score = 60;
// 스코어가 90점 이상이면 A, 70이상 90미만 B, 60이상 70미만 C, 나머지 F
if (score >= 90) {
System.out.println("A");
} else if (score >= 70 && score < 90) {
System.out.println("B");
} else if (score >= 60 && score < 70) {
System.out.println("C");
} else {
System.out.println("F");
}
'Java' 카테고리의 다른 글
[Java] 반복문(Loop) 다루기(for, while) (0) | 2023.01.18 |
---|---|
[Java] 조건문(switch-case) 다루기 (0) | 2023.01.18 |
[Java] 정수, 실수, 문자 데이터 타입 다루기 (0) | 2023.01.17 |
[Java] 자바 기초 문법 다루기 (0) | 2023.01.17 |
[Java] 자바를 개발 프로그래밍 툴 이클립스(Eclipse) 설치하기 (0) | 2023.01.17 |
댓글