更多资源请关注纽扣编程微信公众号
002 OpenJudge-1.1-04 输出保留3位小数的浮点数
http://noi.openjudge.cn/ch0101/04/
描述
读入一个单精度浮点数,保留3位小数输出这个浮点数。
输入
只有一行,一个单精度浮点数。
输出
也只有一行,读入的单精度浮点数。
样例输入
12.34521
样例输出
12.345
参考程序-1
#include<iostream>
#include<iomanip>
using namespace std;int main(){float f;cin>>f;cout<<fixed<<setprecision(3)<<f;
}
参考程序-2
#include<iostream>int main(){float f;scanf("%f",&f);printf("%.3f",f);
}