记录详情

Compile Error

/in/foo.cc: In member function 'bool Date::isLeap(int)':
/in/foo.cc:12:41: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
   12 |                 return y%400==0||y%4==0 && y%100==0;
      |                                  ~~~~~~~^~~~~~~~~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:54:31: error: no matching function for call to 'Date::Date(int&, int&, int&, int&, int&, int&)'
   54 |     Date dt(y, m, d, h, min, s);
      |                               ^
/in/foo.cc:20:9: note: candidate: 'Date::Date(int, int, int)'
   20 |         Date(int y,int m,int d):year(y),month(m),day(d){}
      |         ^~~~
/in/foo.cc:20:9: note:   candidate expects 3 arguments, 6 provided
/in/foo.cc:3:7: note: candidate: 'constexpr Date::Date(const Date&)'
    3 | class Date{
      |       ^~~~
/in/foo.cc:3:7: note:   candidate expects 1 argument, 6 provided
/in/foo.cc:3:7: note: candidate: 'constexpr Date::Date(Date&&)'
/in/foo.cc:3:7: note:   candidate expects 1 argument, 6 provided

信息

递交者
类型
自测
题目
P1007 OO1-5 日期时间类DateTime
语言
C++
递交时间
2025-03-14 21:32:03
评测时间
2025-03-14 21:32:03
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes