我使用GMP库(c ++)进行简单的添加。我有与用户通信的问题,这意味着我不能使用cin和cout这是我的代码:
#include <iostream>
#include <gmpxx.h>
int main() {
mpf_class x("7612058254738945");
mpf_class y("9263591128439081");
mpf_class z = x+y;
std::cout<< z<<std::endl;
return 0;
}
我有:
D:\ gmp-6.0.0a \ gmp-6.0.0 \ gmpxx.h | 1954 | undefined reference to `operator&lt;&lt;(std :: ostream&amp;,__ mpf_struct const *)'| ||错误:ld返回 1退出状态|
我应该做什么?