c++输出33134小数点后三位
要输出3.3134小数点后三位,可以使用以下代码:
#include <iostream>
#include <iomanip>
int main() {
double number = 3.3134;
std::cout << std::fixed << std::setprecision(3) << number << std::endl;
return 0;
}
输出结果为:3.313
在代码中,使用std::fixed设置输出格式为定点表示法,并使用std::setprecision(3)设置精度为三位小数。然后将要输出的数字number使用std::cout输出。
原文地址: https://www.cveoy.top/t/topic/ixtn 著作权归作者所有。请勿转载和采集!