Select The Lesson:
Welcome to Online Education Of Sri Lanka
/*eduLanka Online education web site of Sri Lanka -------- w w w . e d u L a n k a . c o m ------------ java programs for University students - who follow courses - BIT - SLIIT and more find more lessons in http://www.it.edulanka.com eduLanka@gmail.com this programs under GNU licence */ class IfElseChain{ public static void main(String[]arg){ char letterGrade='B'; switch(letterGrade){ case 'A': System.out.println("The numerical grade between 90 and 100"); break; case 'B': System.out.println("The numerical grade between 80 and 89.9"); break; case 'C': System.out.println("The numerical grade between 70 and 79.9"); break; case 'D': System.out.println("The numerical grade between 0 and 29"); break; default : System.out.println("of course, I had nothing to do with my grade"); } } }