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