codevs 1206 保留两位小数

http://codevs.cn/problem/1206/

1206 保留两位小数

 

 时间限制: 1 s
 空间限制: 128000 KB
 题目等级 : 青铜 Bronze
 
 
题目描述  Description

保留两位小数输出一个浮点数。

输入描述  Input Description

一个浮点数。double范围内

输出描述  Output Description

保留两位小数输出

样例输入  Sample Input

11

样例输出  Sample Output

11.00

数据范围及提示  Data Size & Hint
C++用 printf("%.2lf",a);
Pascal用 writeln(a:0:2);
 
       
C++和Pascal用户都请使用double类型,不要使用float,real,extended类型。


分析:


水题。


AC代码:

 1 /*

 2 作者:[email protected]

 3 题目:p1206 保留两位小数

 4 */

 5 

 6 #include <stdio.h>

 7 #include <algorithm>

 8 #include <iostream>

 9 #include <string.h>

10 #include <string>

11 #include <math.h>

12 #include <stdlib.h>

13 #include <queue>

14 #include <stack>

15 #include <set>

16 #include <map>

17 #include <list>

18 #include <iomanip>

19 #include <vector>

20 #pragma comment(linker, "/STACK:1024000000,1024000000")

21 #pragma warning(disable:4786)

22 

23 using namespace std;

24 

25 const int INF = 0x3f3f3f3f;

26 const int MAX = 10000 + 10;

27 const double eps = 1e-8;

28 const double PI = acos(-1.0);

29 

30 int main()

31 {

32     double a;

33     while(~scanf("%lf", &a))

34     {

35         printf("%.2lf\n",a);

36     }

37     return 0;

38 }
View Code

 

你可能感兴趣的:(code)