setw()
setfill()
fixed
setprecision()
cout<<setprecision(n)<<num; //输出n位数字 cout<<fixed<<setprecision(n)<<num; //输出小数点后n位 cout<<setw(n)<<num; //右对齐,长度为n cout<<setfill('*')<<set(w)<<num; //右对齐,长度为n,不足部分用‘*’填充
posted on 2021-03-28 16:13 白夜just 阅读(68) 评论(0) 编辑 收藏 举报