• 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 作者:1348066599@qq.com
     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
    ",a);
    36     }
    37     return 0;
    38 }
    View Code
    悠游天地间 all rights reserved. © 2013 -- 1 << 64
  • 相关阅读:
    基于WINCE嵌入式系统的FM1702的读写器(2)
    WINCE 按键驱动编写
    WinCE内存调整
    USB模块
    网络模块
    wince6.0下ov9650的图像保存
    Windows CE内存泄漏
    MPEG4解码函数
    centos 7 gitlab安装 李刚
    docker 17.12.0ce 空间大小和容器大小限制修改 李刚
  • 原文地址:https://www.cnblogs.com/jeff-wgc/p/4454151.html
Copyright © 2020-2023  润新知