记录详情

Compile Error

/in/foo.cc: In constructor 'BigInt::BigInt(const char*)':
/in/foo.cc:39:13: error: 'strlen' was not declared in this scope
   39 |         n = strlen(s);
      |             ^~~~~~
/in/foo.cc:2:1: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
    1 | #include <iostream>
  +++ |+#include <cstring>
    2 | #include <string>
/in/foo.cc: In member function 'BigInt BigInt::operator*(const BigInt&)':
/in/foo.cc:89:9: error: 'memset' was not declared in this scope
   89 |         memset(result.p, 0, sizeof(int) * (n + obj.n));
      |         ^~~~~~
/in/foo.cc:89:9: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?

信息

递交者
类型
递交
题目
P1024 OO6-2 高精度整数类的加法运算
比赛
2024级《面向对象的方法与实践》第二次作业
语言
C++
递交时间
2025-03-22 20:10:58
评测时间
2025-03-22 20:10:58
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes