fork download
  1. int main() {
  2. int a = 10;
  3. float b = 5.5;
  4. if (a > 5) {
  5. b = b * a;
  6. } else {
  7. b = b / a;
  8. }
  9. while (a > 0) {
  10. a = a - 1;
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
Standard output is empty