题解 | #取近似值#

取近似值

https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a

//取近似值
#include <iostream>
#include <cmath>
using namespace std;
int main() {
    double number;
    cin >> number;

    // 四舍五入到最接近的整数
    int rounded = round(number);
    cout <<  rounded << endl;
    return 0;
}

//直接调用cmath库中的round()函数

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务