Conditional Example 1
class Main {
public static void main(String[] args) {
int x = 99;
int y = 10;
if(x > y){
System.out.println("x is greater than y!");
}
}
}INFO
class Main {
public static void main(String[] args) {
int x = 99;
int y = 10;
if(x > y){
System.out.println("x is greater than y!");
}
}
}