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
Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.
B.G.Skillz 🧑💻 -
Best Codes -
Shiv Iyer -
DevCorner -
Top comments (0)