我已经使用该网站上的说明安装了 GMP:http ://www.cs.nyu.edu/exact/core/gmp/ 然后我使用该库查找了一个示例程序:
#include <iostream>
#include <gmpxx.h>
using namespace std;
int main (void) {
mpz_class a, b, c;
a = 1234;
b = "-5678";
c = a+b;
cout << "sum is " << c << "\n";
cout << "absolute value is " << abs(c) << "\n";
cin >> a;
return 0;
}
但是如果我使用以下命令编译它:g++ test.cpp -o test.exe,它会显示 gmpxx.h: no such file or directory。我怎样才能解决这个问题?我对此有点陌生。我正在使用 MinGW。