04:输出保留3位小数的浮点数
- 总时间限制:
- 1000ms
- 内存限制:
- 65536kB
- 描述
-
读入一个单精度浮点数,保留3位小数输出这个浮点数。
- 输入
- 只有一行,一个单精度浮点数。
- 输出
- 也只有一行,读入的单精度浮点数。
- 样例输入
-
12.34521
- 样例输出
-
12.345
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <string>
#include <ctype.h> using namespace std; int main() {
double aaa;
scanf("%lf", &aaa);
printf("%.3f", aaa); }
scanf对于double型,需要用lf,不是f
但是输出的时候可以用f
找时间要恶补一下scanf和printf
- 提交:http://noi.openjudge.cn/ch0101/04/