#4518. 保留小数位数

保留小数位数

1.哪吒在天庭大会上,需要用C++精确控制三昧真火温度(保留2位小数),但各路神仙的输出格式五花八门。请帮他判断以下程序是否正确?

#include <iostream>
#include <iomanip>
using namespace std;
int main() {
    double d;
    cin>>d;
    cout<<fixed<<setprecision(2)<<d;
    return 0;
}

{{ select(1) }}

  • 正确
  • 错误