笔记~ 保留位数 输出格式 进制转换 四舍五入
保留位数保留位数通常在题目中以求除法再让我们保留几位小数等等c++中用fixed 和setprecision(n)函数保留n位小数c语言则是 printf("%.nf",变量)来解决输出结果第一组的第一行没有小数,之后的有了因为fixed对之后一直有用#include <iostream>#include<math.h>#include<iomanip>using namespace std;