Verify a number is Even/Odd "import java.util.Scanner; public class EvenOdd{ public static void main(String[] args){ Scanner in = new Scanner(System.in); System.out.println("Enter a number which you want to check whether that is even or odd"); int n = in.nextInt(); if(n%2==0){ System.out.println(n+" is an even number."); }else{ System.out.println(n+" is an odd number."); } } } " Output Enter a number which you want to check whether that is even or odd 4 4 is an even number. Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
0 comments:
Post a Comment