how print fload wiht 2 decimal in c++ code example
Example 1: how print fload wiht 2 decimal in c++
#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;
}
Example 2: how to make floats output with 2 decimals c++
#include
#include
using namespace std;
int main()
{
float x=10.3445f;
cout<