In this challenge, we test your knowledge of using if-else conditional statements to automate decision-making processes. An if-else statement has the following logical flow: If n is even and in the ...
//In the if-else statement, we give a condition. //If condition was true then first code block is executed. //If condition was false then else code block is executed.