How to format double value in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

int main()
{
	double d = 3.14;

	cout.precision(3);             
	cout << "default:    " << d << endl;
	cout << "showpoint:  " << std::showpoint << d << endl;
	cout << "fixed:      " << std::fixed << d << endl;
	cout << "scientific: " << std::scientific << d << endl;

	return 0;
}


/*
run:

default:    3.14
showpoint:  3.14
fixed:      3.140
scientific: 3.140e+00

*/

 



answered May 25, 2018 by avibootz

Related questions

1 answer 171 views
1 answer 205 views
2 answers 212 views
1 answer 95 views
1 answer 91 views
1 answer 159 views
...