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.
- Prepare
- Java
- Introduction
- Java If-Else
- Discussions
Java If-Else
Java If-Else
+ 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?
+ 0 comments what is wrong in this code
+ 0 comments what is wrong in this code
+ 0 comments what is wrong in this code
+ 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(); }
}
Load more conversations
Sort 1558 Discussions, By:
Please Login in order to post a comment