본문 바로가기
Java

[Java] and, or, 조건문(if) 다루기

by coding_su 2023. 1. 17.

📝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");
}

댓글