这里我们直接用cincincin读入浮点数 然后用cmathcmathcmath库为我们提供的roundroundround函数,四舍五入它 然后coutcoutcout输出就可以啦 #include <iostream> #include <cmath> using namespace std; int main() { double a; cin >> a; cout << round(a); return 0; }