c_cpp 将给定数字舍入为最接近的10的倍数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 将给定数字舍入为最接近的10的倍数相关的知识,希望对你有一定的参考价值。

//https://www.geeksforgeeks.org/round-the-given-number-to-nearest-multiple-of-10/
#include <bits/stdc++.h>
using namespace std;

int main() {
    int t;
    cin>>t;
    cin>>ws;
    while (t-->0) {
        string s;
        getline(cin, s);
        int n= s.length();
        int num= s[n-1]- '0';
        if (num<=5){
            s[n-1]= '0';
            cout<< s<< endl;
        }
        else {
            s[n-1]= '0';
            int i= n-2;
    
            int carry= 1;
            while (i>=0) {
                if (s[i]== '9') {
                    s[i]= '0';
                }
                else {
                    s[i]+= 1;
                    break;
                }
                i--;
            }
            if (i== -1)
                cout<< 1<< s<< endl;
            else
                cout<< s<< endl;
    
        }
    }
    return 0;
}

以上是关于c_cpp 将给定数字舍入为最接近的10的倍数的主要内容,如果未能解决你的问题,请参考以下文章

四舍五入round()

js四舍五入

Math三个函数

Math.ceil()Math.floor()和Math.round()

Javascript Math ceil()floor()round()三个函数的区别

Java中Math类的几个四舍五入方法的区别