#include#include /*需要头文件:"iomanip"iomanip表示:io manipulator*/using namespace std;int main(){ float a = 0.123000789; cout.setf(ios::fixed);//打开自动补位 cout << "a=" < << setprecision(5) << a <
本文共 304 字,大约阅读时间需要 1 分钟。
#include#include /*需要头文件:"iomanip"iomanip表示:io manipulator*/using namespace std;int main(){ float a = 0.123000789; cout.setf(ios::fixed);//打开自动补位 cout << "a=" < << setprecision(5) << a <
转载于:https://www.cnblogs.com/Tadashi/p/8644276.html