fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. float x, y;
  7. x = 13;
  8. y = 14;
  9. x += y / 1000000000;
  10. cout << "x = " << x << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
x = 13