How to use setprecision in C++

前端 未结 7 1570
遇见更好的自我
遇见更好的自我 2020-11-27 05:38

I am new in C++ , i just want to output my point number up to 2 digits. just like if number is 3.444, then the output should be 3.44 o

7条回答
  •  抹茶落季
    2020-11-27 06:27

    #include 
    #include 
    
    int main()
    {
        double num1 = 3.12345678;
        std::cout << std::fixed << std::showpoint;
        std::cout << std::setprecision(2);
        std::cout << num1 << std::endl;
        return 0;
    }
    

提交回复
热议问题