标签: c++ c++11 boost
我有两个cpp_int和数字a和b。我想找到a*b。我在库中找不到此方法。
cpp_int
a
b
a*b
答案 0 :(得分:1)
这些类型具有重载的运算符。您可以将它们乘以operator*。示例:
operator*
#include <boost/multiprecision/cpp_int.hpp> using Int = boost::multiprecision::cpp_int; Int a("23948723482739842234234234"); Int b(42); Int c = a*b;