달나라 노트

Java - if ~ else if ~ else 본문

Java

Java - if ~ else if ~ else

CosmosProject 2021. 3. 11. 03:13
728x90
반응형

 

 

 

 

 

Original source = www.w3schools.com

 

 

 

Java에서의 if문은 다음과 같이 사용할 수 있습니다.

public class JavaIfElse {
	public static void main(String args[]) {
		if (2 > 1) {
			System.out.println("2 is greater than 1.");
		}
	}
}


-- Result
2 is greater than 1.

 

 

 

 

 

 

 

 

 

public class JavaIfElse {
	public static void main(String args[]) {
		int a = 1;
		int b = 10;
		
		if (a > b) {
			System.out.println("A is greater than B.");
		}
		else {
			System.out.println("A is equal to or less than B.");
		}
	}
}



-- Result
A is equal to or less than B.

 

 

 

 

 

 

 

 

public class JavaIfElse {
	public static void main(String args[]) {
		int x = 1;
		int y = 10;
		
		if (x > y) {
			System.out.println("x is greater than y.");
		}
		else if (x == y) {
			System.out.println("x is equal to y.");
		}
		else if (x < y) {
			System.out.println("x is less than y.");
		}
		else {
			System.out.println("Error");
		}
	}
}




-- Result
x is less than y.

 

 

 

 

 

 

Java도 Python처럼 한 줄 if문 기능을 제공합니다.
Syntax는 다음과 같습니다.

(condition) ? "return value when condition is true" : "return value when condition is false"

 

 


Java의 한줄 if문 예시입니다.

public class JavaIfElse {
	public static void main(String args[]) {
		int int_value = 10;
		String result = (int_value > 10) ? " greater than 10" : "equal to or less than 10";
		System.out.println(result);
	}
}



-- Result
equal to or less than 10

 

 

 

 

 

 

 

728x90
반응형

'Java' 카테고리의 다른 글

Java - switch ~ case ~ default  (0) 2021.03.11
Java - Math : max, min, sqrt, abs, random  (0) 2021.03.11
Java - For loop : For 반복문  (0) 2021.03.11
Java - break, continue  (0) 2021.03.11
Java - Array  (0) 2021.03.11
Comments