✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public static void main(String args[]) { char grade ='E'; if (grade == 'A') { System.out.println("Super Leistung"); }else if (grade == 'B') { System.out.println("Gute Leistung"); }else if (grade == 'C') { System.out.println("Durchschnittliche Leistung"); }else { System.out.println("Unterdurchschnittliche Leistung"); } }