fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i;
  5. for(i=6;i!=0;i--){
  6. printf("%d\n",i*1000000/7);
  7. }
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
857142
714285
571428
428571
285714
142857