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.
In java if else problem
What is wrong with my code i got all test cases are failed ?
but manual input caseses are passed
if(N%2!=0){
System.out.println("Weired");
}
else if(N%2==0 && N>=2 && N<5){
System.out.println("Not Weired");
}else if(N%2==0 && N>=6 && N<=20){
System.out.println("Weired");
}else{
System.out.println("Not Weired");
}
Cookie support is required to access HackerRank
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 →
In java if else problem What is wrong with my code i got all test cases are failed ? but manual input caseses are passed if(N%2!=0){ System.out.println("Weired"); } else if(N%2==0 && N>=2 && N<5){ System.out.println("Not Weired"); }else if(N%2==0 && N>=6 && N<=20){ System.out.println("Weired"); }else{ System.out.println("Not Weired"); }