✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким буде результат виконання коду?
public class Test{
public static void main(String[] args){
char c = 'd';
switch(c){
case 'a' :
System.out.print("a");
case 'b' :
System.out.print("b");
case 'c' :
System.out.print("c");
case 80 :
System.out.print("80");
default :
System.out.print("No match");
}
}
}