最佳答案
我写了一个程序,其中涉及到switch语句的使用,但是在编译时它显示:
错误:跳转到大小写标签。
为什么会这样?
#include <iostream>
int main()
{
int choice;
std::cin >> choice;
switch(choice)
{
case 1:
int i=0;
break;
case 2: // error here
}
}