package day1;
public class ifdemo {
public static void main(String[] args) {
int n = 10;
if (n > 5) {
System.out.println("The number is greater than 5.");
}
else {
System.out.println("The number is 5 or less.");
}
}
}
package day1;
public class ifdemo {
public static void main(String[] args) {
int n = 10;
if (n > 5) {
System.out.println("The number is greater than 5.");
}
else {
System.out.println("The number is 5 or less.");
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Donald Johnson -
Tanvir Ahmed -
Nitin Dixit -
Samuel Gicheha -
Top comments (0)