📜  如何在 C++ 代码示例中打印 5 个精度浮点数

📅  最后修改于: 2022-03-11 14:44:48.685000             🧑  作者: Mango

代码示例1
#include 
#include 
using namespace std;

int main() 
{
    // This code helps you to print a number with desired decimal
    double Number=10.3454;
    printf("%.3lf",Number);

    return 0;
}