91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++中setprecision函數如何使用

c++
小億
128
2023-10-31 10:48:37
欄目: 編程語言

C++中的setprecision函數用于設置浮點數的精度。其函數原型如下:

std::setprecision(int n)

其中,n表示要設置的精度位數。

要使用setprecision函數,需要包含頭文件<iomanip>

下面是一個使用setprecision函數的示例代碼:

#include <iostream>
#include <iomanip>

int main() {
    double num = 3.14159265359;

    std::cout << std::setprecision(4) << num << std::endl;
    std::cout << std::setprecision(2) << num << std::endl;
    std::cout << std::setprecision(8) << num << std::endl;

    return 0;
}

輸出結果為:

3.142
3.1
3.1415927

可以看到,通過setprecision函數設置了不同的精度位數,輸出的浮點數也相應地進行了四舍五入。

0
沅江市| 文昌市| 海南省| 建平县| 纳雍县| 天柱县| 南阳市| 日照市| 浑源县| 天等县| 大同市| 井研县| 临江市| 定安县| 四子王旗| 化德县| 高州市| 兰坪| 宁波市| 怀集县| 揭西县| 垫江县| 永善县| 侯马市| 涞源县| 秀山| 萨嘎县| 前郭尔| 台东县| 石渠县| 镇康县| 连城县| 巴林左旗| 汪清县| 吐鲁番市| 屏东市| 咸丰县| 娄烦县| 延长县| 开原市| 巴楚县|