记录详情

Compile Error

/in/foo.cc: In function 'std::ostream& operator<<(std::ostream&, const Complex&)':
/in/foo.cc:17:22: error: 'const class Complex' has no member named 'image'; did you mean 'imag'?
   17 |                 if(c.image>=0){
      |                      ^~~~~
      |                      imag
/in/foo.cc:20:23: error: 'const class Complex' has no member named 'image'; did you mean 'imag'?
   20 |                 os<<c.image<<"i";
      |                       ^~~~~
      |                       imag
/in/foo.cc: In function 'int main()':
/in/foo.cc:25:45: error: a function-definition is not allowed here before '{' token
   25 |         void bubbleSort(Complex arr[],int n){
      |                                             ^
/in/foo.cc:36:17: warning: empty parentheses were disambiguated as a function declaration [-Wvexing-parse]
   36 |         int main() {
      |                 ^~
/in/foo.cc:36:17: note: remove parentheses to default-initialize a variable
   36 |         int main() {
      |                 ^~
      |                 --
/in/foo.cc:36:17: note: or replace parentheses with braces to value-initialize a variable
/in/foo.cc:36:20: error: a function-definition is not allowed here before '{' token
   36 |         int main() {
      |                    ^
/in/foo.cc:50:2: error: expected '}' at end of input
   50 | }
      |  ^
/in/foo.cc:24:11: note: to match this '{'
   24 | int main(){
      |           ^

信息

递交者
类型
自测
题目
P1012 OO2-2 复数类的比较运算符重载
语言
C++
递交时间
2025-03-22 18:59:38
评测时间
2025-03-22 18:59:38
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes