fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int PdvPerso = 100;
  5. int PdvOrc = 200;
  6. int Degat = 50;
  7.  
  8. while(PdvPerso != 0);
  9.  
  10. printf("Les points de vie du heros sont à %d\n", PdvPerso - Degat);
  11. return 0;
  12. }
  13.  
Time limit exceeded #stdin #stdout 5s 2164KB
stdin
Standard input is empty
stdout
Standard output is empty