Skip to content

Commit d9efec8

Browse files
Solution greater than 100
1 parent 17b8daf commit d9efec8

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Basic Codes/Greaterno.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
public class Greaterno {
3+
4+
public static void main (String[] args) {
5+
6+
int num=110;
7+
System.out.println(num);
8+
if(num>100)
9+
{
10+
System.out.println("Number is Greater than 100");
11+
}
12+
else {
13+
System.out.println("Number is Less than 100");
14+
}
15+
16+
}
17+
18+
}

0 commit comments

Comments
 (0)