记录详情

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:40:43: error: redeclaration of 'int real3'
   40 |         int real1,imag1,real2,imag2,real3,real3;
      |                                           ^~~~~
/in/foo.cc:40:37: note: 'int real3' previously declared here
   40 |         int real1,imag1,real2,imag2,real3,real3;
      |                                     ^~~~~
/in/foo.cc:43:21: error: 'imag3' was not declared in this scope; did you mean 'imag2'?
   43 |         cin>>real3>>imag3;
      |                     ^~~~~
      |                     imag2
/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:24:38
评测时间
2025-03-22 18:24:38
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes