while_post_inc 278 B

1234567891011121314151617181920212223
  1. void main() {
  2. int a = 0;
  3. while(a < 5) {
  4. test(a++);
  5. }
  6. a = 0;
  7. while(a < 5) {
  8. test(a);
  9. a++;
  10. }
  11. long b = 0L;
  12. while(b < 5L) {
  13. test(b++);
  14. }
  15. b = 0L;
  16. while(b < 5L) {
  17. test(b);
  18. b++;
  19. }
  20. }