C++学习--如何控制cout显示的精度
#include <iostream>int main(){ /* 分两步: (1)使用fixed使cout强制以小数的方式显示 cout << fixed; (2)使用setprecision()函数控制显示的精度 cout << setprecision(2); */ cout << fixed; //控制显示的精度为小数点后两位 cout <<