fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int i, j, k;
  6. float x, y, z;
  7. i = 10; j = 5;
  8. k = i / j;
  9. x = 1.0; y = 2.0;
  10. z = x / y;
  11. // your code goes here
  12. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty