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号的主要内容,如果未能解决你的问题,请参考以下文章

3月5号

1月8号

3月8日SCM1.0集成测试简报

php使用mysql数据库,要查询一个时间段里面每一天的数据量,当天没有则显示0.时间段可能是几天或者几月

关于XP系统4月8号停止服务的作文600字带解决方法

5月8日下午学习日志