Java if else program
Java if else program uses if else to execute statement(s) when a condition is fulfilled. Below is a simple program which explains the usage of if else in java programming language.
Java programming if else statement
Output of program:
Above program ask the user to enter marks obtained in exam and the input marks are compared against minimum passing marks. Appropriate message is printed on screen based on whether user passed the exam or not. In the above code both if and else block contain only one statement but we can execute as many statements as required.
Nested If Else statements
You can use nested if else which means that you can use if else statements in any if or else block.
ConversionConversion EmoticonEmoticon