fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i=30;
  6. do
  7. {
  8. printf("%d\t",i);
  9. i=i-3;
  10.  
  11. }
  12. while(i>=3);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
30	27	24	21	18	15	12	9	6	3