JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Program {
public static void main(String[] args) {
int age = 22;
int money = 800;
if (age > 18) {
if (money > 500)
{
System.out.println("Welcome!");
}
else (age < 18){
System.out.println ("thanks");
}
}
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run