error CS8070: Control cannot fall out of switch statement through final case label `case default:'
switch case문 작성시 위와 같은 오류가 발생했다.
해결방법은 간단하다. default:에도 break;를 걸어주면 된다.
이유는 정확히는 모르지만 default의 범위가 어디까지인지 인지하지 못하고 다시 도는 것 같다.
switch(words[i])
{
case 'a':
...
break;
case 'y':
...
break;
default:
...
}
switch(words[i])
{
case 'a':
...
break;
case 'y':
...
break;
default:
...
break;
}