码迷,mamicode.com
首页 > 其他好文 > 详细

例题:判断平年还是闰年。理解使用异常语句try catch finally 和datetime 时间类

时间:2015-04-17 23:42:52      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

while (true)            

{

                Console.Write("请输入一个年份:");

               int rn =Convert .ToInt32 ( Console.ReadLine()); //输入一个年份

                //string s = "";

                try 

      //尝试,保护起来,使程序出错也能执行

                {  

                   DateTime rn1 = Convert.ToDateTime(rn + "-2-29");//从电脑自动获取正确时间

                    Console.WriteLine(rn + "年是闰年");

                }  

               catch (Exception)     //这里捕获错误,有错误才执行

                {  

                   //s = "年不是闰年";  

                   Console.WriteLine(rn+"年不是闰年");

                }

                finally          //不管有没有错最后都执行

                {  

                   //Console.WriteLine(rn + s);

 

                }  

           }

            Console.ReadLine();

例题:判断平年还是闰年。理解使用异常语句try catch finally 和datetime 时间类

标签:

原文地址:http://www.cnblogs.com/275147378abc/p/4436269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!