✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який результат компіляції і виконання даного коду?
final char a = 'A', d = 'D'; // рядок 1
char grade = 'B';
switch(grade) {
case a: // рядок 4
case 'B': System.out.print("great");
case 'C': System.out.print("good"); break;
case d: // рядок 7
case 'F': System.out.print("not good");
}