fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6.  
  7. {
  8.  
  9. float x = 0.9, y=0.5;
  10.  
  11. int i,j = 1;
  12.  
  13. i = x + j + y;
  14.  
  15. cout << i;
  16.  
  17. return 0;
  18.  
  19. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:9:24: error: non-ASCII characters are not allowed outside of literals and identifiers
      float x = 0.9, y=‑0.5;
                       ^
1 error generated.
stdout
Standard output is empty