请将下面的类 Date 的定义补充完整,使得由语句 Date FirstDay; 定义的对象 FirstDay 的值为 2010 年 1 月 1 日。 class Date{ public: Date( ________ ):year(y),month(m),day(d){ } private: int year,month,day; // 依次表示年、月、日 };

时间:2022-11-12 20:23:15

相似题目