-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconditional.java
44 lines (38 loc) · 1.01 KB
/
conditional.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
public class conditional {
public static void main(String[] args) {
int a = 10;
int b = 100;
//if (a == b){
// System.out.println("a==b");
//}
//else{
// System.out.println("else block");
//}
if (a == b) {
System.out.println("a==b");}
else if (a<b){
System.out.println("a<b");
}
else if (a<=b){
System.out.println("a<=b");
}
else {
System.out.println("else block");
}
//다중 조건인 경우 조건을 만족하는 최초의 분기만 실행
//switch 조건문
switch(a+1) {
case 9:
System.out.println("a++1==10");
break;
case 10:
System.out.println("a++1==11");
break;
case 11:
System.out.println("a++1 == 12");
break;
default:
System.out.println("default");
}
}
}