fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int x = 3;
  6. int y = 10;
  7.  
  8. while(1)
  9. {
  10.  
  11. if(x < 10 && x > 5)
  12. {
  13.  
  14.  
  15. printf("x is less than 10 but more than 5\n");
  16.  
  17.  
  18. if(y < 20)
  19. {
  20.  
  21. printf("y is less than 20");
  22. break;
  23.  
  24.  
  25. }
  26.  
  27.  
  28. }
  29.  
  30.  
  31. }
  32.  
  33. return 0;
  34. }
  35.  
Time limit exceeded #stdin #stdout 5s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty