Skip to content

Commit e137caa

Browse files
authored
Merge pull request #37 from kavindu-chethani/main
control statments
2 parents e268525 + d5cae38 commit e137caa

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Basics/ControlStatment/If-else.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//A Java Program to demonstrate the use of if-else statement.
2+
//It is a program of odd and even number.
3+
public class IfElseExample {
4+
public static void main(String[] args) {
5+
//defining a variable
6+
int number=13;
7+
//Check if the number is divisible by 2 or not
8+
if(number%2==0){
9+
System.out.println("even number");
10+
}else{
11+
System.out.println("odd number");
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)