You are viewing a single comment's thread. Return to all comments →
import java.util.Scanner;
public class Solution {
public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt();
String res = (!(n%2==0)) ? "Weird" : (n%2==0 && ((2 <= n) && (n<= 5))) ? "Not Weird" : (n%2==0 && ((6 <= n) && (n<= 20))) ? "Weird" : "Not Weird"; System.out.println(res); sc.close(); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Java If-Else
You are viewing a single comment's thread. Return to all comments →
import java.util.Scanner;
public class Solution {
String res = (!(n%2==0)) ? "Weird" : (n%2==0 && ((2 <= n) && (n<= 5))) ? "Not Weird" : (n%2==0 && ((6 <= n) && (n<= 20))) ? "Weird" : "Not Weird"; System.out.println(res); sc.close(); } }