[ create a new paste ] login | about

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

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

int main(){
    float x = 1000;
    cout<<"x = "<<x<<endl;
    x = x + 1E-5;
    cout.width(10);
    cout.precision(10);
    cout<<"x = "<<x<<endl;
    x = x + 1E-5;
    cout<<"x = "<<x<<endl;
    return 0;
}


Output:
1
2
3
x = 1000
      x = 1000
x = 1000


Create a new paste based on this one


Comments: