摘要: #include #include //需要添加此头文件 using namespace std; int main() { float a=0.20001; float b=2; cout<<setprecision(2)<<a<<endl;//输出小数点后两位,0会舍去 cout.setf(ios::fixed); cout<<fixed<<setp... 阅读全文
posted @ 2017-08-14 07:58 路人姜。 阅读(754) 评论(0) 推荐(0) 编辑