fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int x;
  5. int y;
  6.  
  7.  
  8.  
  9. int main() {
  10. x=5.8;
  11. y=3.2;
  12. float z=x/y;
  13. cout<<z;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
1