We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • Hackerrank Home
  • Prepare
    NEW
  • Certify
  • Compete
  • Career Fair
  • Hiring developers?
  1. Prepare
  2. Java
  3. Introduction
  4. Java If-Else
  5. Discussions

Java If-Else

Problem
Submissions
Leaderboard
Discussions
Editorial

Sort 1558 Discussions, By:

recency

Please Login in order to post a comment

  • mdshabbirahmadr1
    2 days ago+ 0 comments

    scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");

    what does it means? and why this (private static final Scanner scanner = new Scanner(System.in);) is private?

    -3|
    Permalink
  • parthapratimdut1
    3 days ago+ 0 comments

    what is wrong in this code

    -4|
    Permalink
  • parthapratimdut1
    3 days ago+ 0 comments

    what is wrong in this code

    0|
    Permalink
  • parthapratimdut1
    3 days ago+ 0 comments

    what is wrong in this code

    -1|
    Permalink
  • neeshujadon2
    7 days ago+ 0 comments

    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();
        if(N % 2 == 0 && N >= 6 && N <= 20)
        {
            System.out.println("Weird");
        }
        else if(N % 2 == 0 && N >= 2 && N <=5)
        {
            System.out.println("Not Weird");
        }
        else if(N % 2 == 0 && N > 20)
        {
            System.out.println("Not Weird");
        }
         else
        {
            System.out.println("Weird");
        }
        scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
    
        scanner.close();
    }
    

    }

    0|
    Permalink
Load more conversations

Need Help?


View editorial
View top submissions
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy