Advertisement
mcnealk

#7

Oct 23rd, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. * @author Kailey McNeal
  2. * @version 10-23-14
  3. * p.299 #7
  4. */
  5. import java.util.*;
  6. public class Seven
  7. {
  8. public static void main (String[]args)
  9. {
  10. Scanner console=new Scanner(System.in);
  11. int num=console.nextInt();
  12. if (num%2==0)
  13. {
  14. System.out.println("even");
  15. }
  16. else
  17. {
  18. System.out.println("odd");
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement