1个回答
展开全部
把书多看几遍理解理解很简单的吧
比如:
switch(n)
{
case 1:
operation1;
break;
case 2:
operation2;
break;
default:
operation3;
break;
}
就可以变成:
if(n==1)
{operation1;}
else if(n==2)
{operation2;}
else
{operation3;}
不管有多少个case 都可以这么变 只要你理解了switch和if else 这个应该是不难的
比如:
switch(n)
{
case 1:
operation1;
break;
case 2:
operation2;
break;
default:
operation3;
break;
}
就可以变成:
if(n==1)
{operation1;}
else if(n==2)
{operation2;}
else
{operation3;}
不管有多少个case 都可以这么变 只要你理解了switch和if else 这个应该是不难的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询