-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path05_Conditions in java
61 lines (48 loc) · 1.22 KB
/
05_Conditions in 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.company;
public class javaconditions{
public static void main(String[] args) {
boolean a = true;
boolean b = false;
if (a && b){
System.out.println("TRUE");
}
else{
System.out.println("FALSE");
}
boolean y = true;
boolean z = false;
if (y || z){
System.out.println("TRUE");
}
else{
System.out.println("FALSE");
}
boolean p = false;
System.out.println(!p);
}
}
// SWITCH CASE
int age;
System.out.println("Enter your age=");
Scanner sc = new Scanner(System.in);
age = sc.nextInt();
switch (age) {
case 18 -> System.out.println("adult");
case 21 -> System.out.println("adult adult");
case 30 -> System.out.println("super adult");
default -> System.out.println("nothing");
}
// If-else ladder
if (age>22)
{
System.out.println("adult");
}
else if (age>18)
{
System.out.println("child");
}
else{
System.out.println("baby");
}
}
}