记录详情

Compile Error

/in/foo.cc: In member function 'Complex& Complex::operator+=(const Complex&)':
/in/foo.cc:21:9: warning: no return statement in function returning non-void [-Wreturn-type]
   20 |                 imag+=other.imag;
  +++ |+  return *this;
   21 |         }
      |         ^
/in/foo.cc: In function 'int main()':
/in/foo.cc:46:9: error: 'complex' was not declared in this scope
   46 |         complex c3(real3,imag3);
      |         ^~~~~~~
/in/foo.cc:2:1: note: 'std::complex' is defined in header '<complex>'; did you forget to '#include <complex>'?
    1 | #include <iostream>
  +++ |+#include <complex>
    2 | using namespace std;
/in/foo.cc:47:27: error: 'c3' was not declared in this scope; did you mean 'c2'?
   47 |         Complex sum=c1+c2+c3;
      |                           ^~
      |                           c2

信息

递交者
类型
自测
题目
P1011 OO2-1 复数类的算术、赋值运算符的重载
语言
C++
递交时间
2025-03-22 18:25:22
评测时间
2025-03-22 18:25:22
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes