fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(int argc, const char * argv[]){
  6.  
  7. int count = 0;
  8.  
  9. while(true){
  10.  
  11. count++;
  12.  
  13. if(count > 100)
  14. break;
  15. if(count == 5)
  16. continue;
  17. }
  18.  
  19. cin.get();
  20. return 0;
  21. }
Success #stdin #stdout 0s 16048KB
stdin
Standard input is empty
stdout
Standard output is empty