We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e268525 + d5cae38 commit e137caaCopy full SHA for e137caa
Basics/ControlStatment/If-else.java
@@ -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