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
#include
#include
using namespace std;
You can enter the line using namespace std; for your convenience. Otherwise, you'll have to explicitly add std:: every time you wish to use cout, fixed, showpoint, setprecision(2) and endl
int main()
{
double num1 = 3.12345678;
cout << fixed << showpoint;
cout << setprecision(2);
cout << num1 << endl;
return 0;
}