Advertisements
Advertisements
प्रश्न
Explain if-else-if construct with an example.
संक्षेप में उत्तर
उत्तर
On occasions, we might want to offer a new condition to test and then run a different block of code if the given condition turns out to be false. In this case, if () - else-if is helpful. In the example below, one of the conditions that results in true affects the student's final grade that is printed.
Example:
if (marks >= 75)
System.out. println("Distinction");
else if (marks >= 60)
System.out.println("First Division");
else if (marks >= 50)
System.out.println("Second Division");
else
System.out.println("Third Division");
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.08: Conditional Statements in Java - EXERCISES [पृष्ठ १००]