概述
题目描述
Vasya has a non-negative integer nn . He wants to round it to nearest integer, which ends up with 00 . If nn already ends up with 00 , Vasya considers it already rounded.
For example, if n=4722n=4722 answer is 47204720 . If n=5n=5 Vasya can round it to 00 or to 1010 . Both ways are correct.
For given nn find out to which integer will Vasya round it.
输入格式
The first line contains single integer nn ( 0<=n<=10^{9}0<=n<=10
9
) — number that Vasya has.
输出格式
Print result of rounding nn . Pay attention that in some cases answer isn’t unique. In that case print any correct answer.
输入输出样例
输入 #1复制
5
输出 #1复制
0
输入 #2复制
113
输出 #2复制
110
输入 #3复制
1000000000
输出 #3复制
1000000000
输入 #4复制
5432359
输出 #4复制
5432360
说明/提示
In the first example n=5n=5 . Nearest integers, that ends up with zero are 00 and 1010 . Any of these answers is correct, so you can print 00 or 1010 .
题意翻译
给你一个数字,将其“四舍六入”,末尾为5舍去或进位都可,求最终的数字。
题解:对于本题的四舍六入(本质上就是四舍五入),也就是对于整数进行四舍五入的操作,下面代码是经常在整数部分所用到的四舍五入的做法,对于每一个数加上5数除以10再乘以10即可解决,这个是非常基本的操作,必须熟练。
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
n=(n+5)/10*10;
cout<<n<<endl;
return 0;
}
三种小数处理函数:
1.Floor() 下取整(不大于本身的最大 整数 )
2.Ceil() 上取整(不小于本身的最大 整数 ) A.Taxi题目中使用到了该函数
3.Round() 四舍五入到最邻近的 整数
最后
以上就是怕黑钢笔为你收集整理的CF898A Rounding的全部内容,希望文章能够帮你解决CF898A Rounding所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复