用C#语言输入年份月份,输出该月天数
时间: 2024-09-20 20:08:14 浏览: 39
C#实现计算润年及月分天数
在C#中,你可以使用DateTime类以及它的Day属性来获取特定年份和月份的天数。这里有一个简单的示例:
```csharp
using System;
class Program {
static void Main(string[] args) {
Console.Write("请输入年份:");
int year = Int32.Parse(Console.ReadLine());
Console.Write("请输入月份(注意0表示一月,12表示十二月):");
int month = Int32.Parse(Console.ReadLine()) - 1; // 因为月份从0开始计数
DateTime date = new DateTime(year, month + 1, 1); // 增加1是因为获取的是该月的第一天
int daysInMonth = date.Day;
Console.WriteLine($"{year}年的{month + 1}月有{daysInMonth}天。");
阅读全文