Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package programmingBasics;
- import java.util.Scanner;
- public class EvenorOdd {
- public static void main(String[] args) {
- Scanner scanner= new Scanner(System.in);
- int num=Integer.parseInt(scanner.nextLine());
- if (num % 2 ==0){
- System.out.println("even");
- }else{
- System.out.println("odd");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement