Today We Run a program to check a number is an even number or an odd number in java.
This session is how to check the number is even or odd in Java Programming. Here we show you, how use of For loop in java programming with Example and oops concepts in java
This java language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.
Find a number is even or odd number in Java Programming?
class test5 {
int n;
public void odd_even(int n) {
if ((n % 2) == 0) {
System.out.println(n + ” is an Even Number”);
} else {
System.out.println(n + ” is a Odd Number”);
}
}
}
public class oddandeven {
public static void main(String args[]) {
test5 o = new test5();
Scanner c = new Scanner(System.in);
System.out.print(“Enter a Number to check Even or odd: “);
o.n = c.nextInt();
o.odd_even(o.n);
}
}
2 is an Even Number
Enter a Number to check Even or odd: 3
3 is an Odd Number
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this java programming code or input & output please comment below
If you have another question about java programming send an email by contacting us form are given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut
Please share your experience about this post,
Thank You!