3月8号
Posted 万里冰封
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3月8号相关的知识,希望对你有一定的参考价值。
重点:switch 语句
switch语句本质上就是多选一,满足其中一个,跳出中断运行。
//选择快餐
Console.WriteLine("我的快餐选择:");
int x = int.Parse(Console.ReadLine());
switch (x)
{
case 1: Console.WriteLine("汉堡包");
break;
case 2: Console.WriteLine("炸鸡腿");
break;
case 3: Console.WriteLine("鸡米花");
break;
default: Console.WriteLine("输入有误");
break;
}
Console.ReadLine();
break;
//闰月的判断
Console.WriteLine("今年是");
int year = int.Parse(Console.ReadLine());
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
{
Console.WriteLine(year + "是闰年");
}
else
Console.WriteLine("今年是平年");
Console.ReadLine();
以上是关于3月8号的主要内容,如果未能解决你的问题,请参考以下文章