Decision Statement in Java
2020-05-29
if statement The if statement is the most basic of all the control flow statements. It tells your program to execute a certain section of code only if a particular test evaluates to true.Below is the structure of if statement: if (condition) { // Do something here if ‘condition’ is true. } The above imageContinue Reading
