在C++中四舍五入

Posted on 2024-04-13 08:37  封魔NJ  阅读(8)  评论(0编辑  收藏  举报

#include<bits/stdc++.h>
using namespace std;
int main(){
//    ;
double a=round(13.0/5);
cout<<a<<endl;
return 0;
}