9) Write a program in java to input a number and check whether it is Even or Odd?
import java.util.*;public class Even_Odd{public static void main(String args[ ]){Scanner sc = new Scanner (System.in);System.out.println("Enter a numbers");int a = sc.nextInt();if(a%2==0){System.out.println("Entered numbeer is even");}else{System.out.println("Entered numbeer is odd");}}}
No comments:
Post a Comment
if you have any doubts, Please let me know.
Your Truly
Shashank Porwal