首页 > 代码库 > 03.if 和 switch结合练习

03.if 和 switch结合练习

  1. namespace _04.练习01
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. //请用户输入年份,再输入月份,输出该月有多少天
  8. Console.WriteLine("请输入年份:");
  9. int year =Convert.ToInt32(Console.ReadLine());
  10. Console.WriteLine("请输入月份:");
  11. int month = Convert.ToInt32(Console.ReadLine());
  12. switch (month)
  13. {
  14. case 1:
  15. case 3:
  16. case 5:
  17. case 7:
  18. case 8:
  19. case 10:
  20. case 12:
  21. Console.WriteLine("该月有31天!");
  22. break;
  23. case 4:
  24. case 6:
  25. case 9:
  26. case 11:
  27. Console.WriteLine("该月有30天!");
  28. break;
  29. case 2:
  30. if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
  31. {
  32. Console.WriteLine("该月有29天.");
  33. }
  34. else
  35. {
  36. Console.WriteLine("该月有28天.");
  37. }
  38. break;
  39. }
  40. Console.ReadKey();
  41. }
  42. }
  43. }



来自为知笔记(Wiz)


03.if 和 switch结合练习