主题:C#中的switch害人呀!
using System;
using System.Collections.Generic;
using System.Text;
namespace onec
{
class Program
{
static void Main(string[] args)
{
int a = 3,y=0;
switch (a)
{
case 1:
y = 3;
break;
case 2:
y = 5;
break;
case 3:
y=6;
break;
default :
y=7;
break;
}
Console.Write("{0}",y);
}
}
}
在VS中编缉为什么连default中的break都不可以省掉:
using System.Collections.Generic;
using System.Text;
namespace onec
{
class Program
{
static void Main(string[] args)
{
int a = 3,y=0;
switch (a)
{
case 1:
y = 3;
break;
case 2:
y = 5;
break;
case 3:
y=6;
break;
default :
y=7;
break;
}
Console.Write("{0}",y);
}
}
}
在VS中编缉为什么连default中的break都不可以省掉: