定义一个类CDate,实现对日期类的封装,属性为year month day 成员函数voidinput_Date() 和

string Output_Date()实现日期的输入与输出。。。。。求代码
2024-12-24 18:06:07
推荐回答(2个)
回答1:

class CDate
{
public CDate()
{

}
public int Year { get; set; }
public int Month { get; set; }
public int Day { get; set; }
public void Input_Date()//实现日期的输入与输出。。。。。求代码
{
this.Year = DateTime.Now.Year;//也可以用你的方法输入,控制台,WinForm都可以
this.Month = DateTime.Now.Month;
this.Day = DateTime.Now.Day;
}
public string Output_Date()//实现日期的输入与输出。。。。。求代码
{
return Year + "-" + Month + "-" + Day;
}
}

回答2:

此回答已删除。