fork download
  1. #include <stdio.h>
  2.  
  3. int main () {
  4. int I, F;
  5. do {
  6. scanf("%d", &I);
  7. scanf("%d", &F);
  8. } while (I >= F);
  9. for (; I < F; I++, F--) printf("%d %d ", I, F);
  10. if (I == F) printf("%d ", I);
  11. printf("\nfim de programa\n");
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/204611/101
Success #stdin #stdout 0s 4300KB
stdin
3
10
stdout
3 10 4 9 5 8 6 7 
fim de programa