fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i=15625;
  6. while(i>=5)
  7. {
  8. printf("%d\t",i);
  9. i=i/5;
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
15625	3125	625	125	25	5