From 4385c5e2b46c3c33da28f6d03a6320552e193b82 Mon Sep 17 00:00:00 2001 From: Kristian Sooklal Date: Wed, 23 Oct 2019 15:22:07 -0400 Subject: [PATCH] Java If/Else Challenge Add solution for https://www.hackerrank.com/challenges/java-if-else/problem --- Java/JavaIfElse/Solution.java | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Java/JavaIfElse/Solution.java diff --git a/Java/JavaIfElse/Solution.java b/Java/JavaIfElse/Solution.java new file mode 100644 index 0000000..4f7fbe3 --- /dev/null +++ b/Java/JavaIfElse/Solution.java @@ -0,0 +1,29 @@ +import java.io.*; +import java.math.*; +import java.security.*; +import java.text.*; +import java.util.*; +import java.util.concurrent.*; +import java.util.regex.*; + +public class Solution { + private static final Scanner scanner = new Scanner(System.in); + + public static void main(String[] args) { + int n = scanner.nextInt(); + scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); + + if (n % 2 == 1){ + System.out.println("Weird"); + } else { + if (n >= 2 && n < 5){ + System.out.println("Not Weird"); + } else if (n >= 6 && n <= 20) { + System.out.println("Weird"); + } else { + System.out.println("Not Weird"); + } + } + scanner.close(); + } +}