Sort by

recency

|

2022 Discussions

|

  • + 0 comments

    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])?");
            System.out.println((N % 2 != 0 || (N>= 6 && N <= 20)) ? "Weird" : "Not Weird");
    
            scanner.close();
    }
    

    }

  • + 0 comments

    Otra de las soluciones es: 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])?");
    
        System.out.println(
    (N % 2 != 0 || (N >= 6 && N <= 20)) ? "Weird" : "Not Weird");        
    
        scanner.close();
    }
    

    }


    Si N es impar (N % 2 != 0), siempre imprime "Weird"
    
    Si N es par:
    
        Entre 2 y 5: "Not Weird"
    
        Entre 6 y 20: "Weird"
    
        Mayor que 20: "Not Weird"
    
  • + 0 comments

    **import java.util.Scanner; public class Solution{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if(n%2!=0) 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"); sc.close(); } } **

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

    Java is a powerful and versatile programming language that's been a backbone of software development for decades. betguru 247 net login