(云璟月移动WikiOI/1206页面至CodeVS/1206,不留重定向:替换文字 - 「WikiOI」替换为「CodeVS」)
(替换文字 - 「codevs.com」替换为「codevs.cn」)
第1行: 第1行:
 
[[分类:浮点数处理]]
 
[[分类:浮点数处理]]
 
==求和==
 
==求和==
{{信息题|求和|http://www.codevs.com/problem/1206/|1|100}}
+
{{信息题|求和|http://www.codevs.cn/problem/1206/|1|100}}
 
==题意==
 
==题意==
 
保留两位小数输出一个浮点数。
 
保留两位小数输出一个浮点数。

2014年10月2日 (四) 18:20的版本

求和

题目链接 难度等级 完成状态 完成分数 最后编辑时间 需要注意
求和 ★☆☆☆☆ 答案正确 100 {{{time}}}
无法理解日期"{{{time}}}"无法理解日期"{{{time}}}"

题意

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

题解

入门题没什么好说的。

代码

1206.cpp代码已折叠
展开折叠内容
#include<cstdio>
int main(){
    double n;
    scanf("%lf",&n);
    printf("%.2lf",n);
    return 0;
}

著作权声明[编辑]

关于[编辑]