This is my solution for the challengue "if/else", I'm not a bigger fan of this sentence, so... I coded my solution only using ifs and creating a function validator.
Created
July 20, 2022 05:28
-
-
Save EmmaG2/558da448e1891ee3843b47ddfe649324 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Solution { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int inputNumber = sc.nextInt(); | |
System.out.println(verifyNumber(inputNumber)); | |
} | |
public static String verifyNumber(int numberParam) { | |
if (numberParam % 2 == 1) { | |
return "Weird"; | |
} | |
if (numberParam >= 2 && numberParam <= 5) { | |
return "Not Weird"; | |
} | |
if (numberParam >= 6 && numberParam <= 20) { | |
return "Weird"; | |
} | |
return "Not Weird"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment