0_0_14763876_22373.cpp: In constructor 'BigInt::BigInt()':
0_0_14763876_22373.cpp:8:23: error: 'memset' was not declared in this scope
memset(a,0,sizeof(a));
^
0_0_14763876_22373.cpp: In constructor 'BigInt::BigInt(long long int)':
0_0_14763876_22373.cpp:13:23: error: 'memset' was not declared in this scope
memset(a,0,sizeof(a));
^
0_0_14763876_22373.cpp: In constructor 'BigInt::BigInt(const char*)':
0_0_14763876_22373.cpp:23:23: error: 'memset' was not declared in this scope
memset(a,0,sizeof(a));
^
0_0_14763876_22373.cpp:24:19: error: 'strlen' was not declared in this scope
int L = strlen(s);
^
0_0_14763876_22373.cpp: In member function 'BigInt BigInt::operator+(const BigInt&) const':
0_0_14763876_22373.cpp:41:26: error: 'max' was not declared in this scope
res.len = max(len,b.len);
^
0_0_14763876_22373.cpp: In member function 'void BigInt::output()':
0_0_14763876_22373.cpp:74:23: error: 'printf' was not declared in this scope
printf("%d",a[len-1]);
^
|