while_pre_dec 86 B

12345678910
  1. a = 5;
  2. while(a > 0) {
  3. print --a;
  4. }
  5. a = 5;
  6. while(a > 0) {
  7. print a;
  8. --a;
  9. }