[src]
#include < iostream >
#include < iomanip >
using namespace std;
int main () {
double f =3.14159;
cout << setprecision (5) << f << endl;
cout << setprecision (9) << f << endl;
return 0;
}
[/src]

[src]
#include < iostream >
#include < iomanip >
using namespace std;
int main () {
double f =3.14159;
cout << setprecision (5) << f << endl;
cout << setprecision (9) << f << endl;
return 0;
}
[/src]
clone 'em all
Actions : (View-Readers)
There are no names to display.
Reply With Quote