/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package exerjava5; /** * * @author Student */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here char A='A'; char B='B'; char C='C'; char F='F'; char Grade='B'; switch (Grade){ case 'A': System.out.println("You gotan A. Great job"); case 'B': System.out.println("You gotan B. Good work!"); case 'C': System.out.println("You gotan B. You'll never get into a good challenge!");break; case 'F': System.out.println("You gotan B. You'll never get into a good challenge!");break; } } }