记录详情

Compile Error

/in/foo.cc: In member function 'BigInt BigInt::add(const BigInt&) const':
/in/foo.cc:65:13: error: 'reverse' was not declared in this scope
   65 |             reverse(num1.begin(), num1.end());
      |             ^~~~~~~
/in/foo.cc:69:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |             for (int i = 0; i < num1.length() || i < num2.length() || carry; ++i) {
      |                             ~~^~~~~~~~~~~~~~~
/in/foo.cc:69:52: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |             for (int i = 0; i < num1.length() || i < num2.length() || carry; ++i) {
      |                                                  ~~^~~~~~~~~~~~~~~
/in/foo.cc:70:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   70 |                 int digit1 = (i < num1.length()) ? num1[i] - '0' : 0;
      |                               ~~^~~~~~~~~~~~~~~
/in/foo.cc:71:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   71 |                 int digit2 = (i < num2.length()) ? num2[i] - '0' : 0;
      |                               ~~^~~~~~~~~~~~~~~
/in/foo.cc:85:17: error: 'reverse' was not declared in this scope
   85 |                 reverse(num1.begin(), num1.end());
      |                 ^~~~~~~
/in/foo.cc:89:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   89 |                 for (int i = 0; i < num1.length(); ++i) {
      |                                 ~~^~~~~~~~~~~~~~~
/in/foo.cc:91:37: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   91 |                     int digit2 = (i < num2.length()) ? num2[i] - '0' : 0;
      |                                   ~~^~~~~~~~~~~~~~~

信息

递交者
类型
自测
题目
P1024 OO6-2 高精度整数类的加法运算
语言
C++
递交时间
2025-03-23 16:28:22
评测时间
2025-03-23 16:28:22
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes