Georgi_Benchev

Untitled

Nov 22nd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package lekciq_3;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class task02 {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.         int num = Integer.parseInt(scanner.nextLine());
  9.  
  10.         if (num % 2 == 0) {
  11.             System.out.println("even");
  12.         } else {
  13.             System.out.println("odd");
  14.         }
  15.  
  16.  
  17.     }
  18. }
Add Comment
Please, Sign In to add comment