Skip to content

Instantly share code, notes, and snippets.

@EmmaG2
Created July 20, 2022 05:28
Show Gist options
  • Save EmmaG2/558da448e1891ee3843b47ddfe649324 to your computer and use it in GitHub Desktop.
Save EmmaG2/558da448e1891ee3843b47ddfe649324 to your computer and use it in GitHub Desktop.

Challengue of HackerRank

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.

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