using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace switchcaseStatement
{
class Program
{
static void Main(string[] args)
{
/* A Switch Statement that falls trought the first case Label */
string CustomerType = "A";
switch (CustomerType)
{
case "A":
case "B":
/* case label two*/
Console.WriteLine("\n Discount Percent .5m ");
break;
case "C":
/* case label three*/
Console.WriteLine("Discount Percent .3m ");
break;
case "D":
/* case label four*/
Console.WriteLine("Discount Percent .2m ");
break;
default:
Console.WriteLine("No Discount ");
break;
}
Console.ReadLine();
}
}
}