Skip to content

Commit 2fe5975

Browse files
Merge pull request #21 from dineshparekh11/dinesh1
Solution greater than 100
2 parents 17b8daf + d9efec8 commit 2fe5975

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)