[ create a new paste ] login | about

Link: http://codepad.org/nEjOwYjy    [ raw code | output | fork ]

C++, pasted on Apr 15:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
using namespace std;

int main(int argc, char** argv)
{
cout 
	<< 1256.256 / 5689.23654 
	<< " "
	<< setprecision(10) << 1256.256 / 5689.23654 
	<< endl;

return 0;
}


Output:
1
0.220813 0.220812756


Create a new paste based on this one


Comments: