Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- public class Main
- {
- public static void main(String[] args)
- {
- int a;
- Scanner in = new Scanner(System.in);
- System.out.println("Enter a no: ");
- a = in.nextInt();
- if (a % 2 == 0)
- {
- System.out.println("The given number is even");
- }
- else
- {
- System.out.println("The given number is odd");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement