c++保留小数

c++保留小数

代码

修改后后面输出都受影响

#include 
#include 
using namespace std;

int main()
{
    float a =1.14514;
    cout << fixed << setprecision(2) << a << endl;
    cout << a << endl;
    cout << setiosflags(ios::fixed) << setprecision(5) << a << endl;
    return 0;
}

运行结果

1.14
1.14
1.14514

补充

左对齐 std:: left
右对齐 std::right
宽度 setw()

你可能感兴趣的:(C++笔记,c++)