898A. Rounding#数的舍入

Posted hello_OK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了898A. Rounding#数的舍入相关的知识,希望对你有一定的参考价值。

题目出处:http://codeforces.com/problemset/problem/898/A

题目大意:找一个数最近的整十的数

#include<iostream>
using namespace std;
int main(){
    int a,b;
    cin>>a;
    b=a;
    while(1){
        if(a%10==0){
            cout<<a<<endl;return 0;
        }
        if(b%10==0){
            cout<<b<<endl;return 0;
        }
        a++;b--;
    }
    return 0;
} 

没啥好考虑的,直接双向查找,次数必然不超过5次

以上是关于898A. Rounding#数的舍入的主要内容,如果未能解决你的问题,请参考以下文章

CF898A Rounding

CF898A Rounding

二次规划的舍入问题

Powershell:将分数转换为整数 - 令人惊讶的舍入行为

在 C++ 中使用 floor 函数的舍入错误

c集成程序中的舍入错误