📅  最后修改于: 2022-03-11 14:44:48.685000             🧑  作者: Mango
#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;
}