假设我有一个
mpf_t number;
等于 1.25。我想以给定的精度打印它,即使会有尾随零,例如
1.2500000
当我尝试使用 mpf_get_str 函数打印它时,它以科学(e)格式打印,
mpf_out_str(stdout,10,7,number); //prints 0.125e1
当我使用 c++ 的 cout 时,由于 mpf_t << 重载,
cout << number << endl; //prints 1.25
当我尝试通过在 cout 中调用 setprecision(给定精度)来打印它时,我仍然得到 1.25
cout << setprecision(7) << number << endl; //prints 1.25
那么,我怎样才能打印出我想要的号码呢?