For.basic 315 B

123456789101112131415161718192021222324
  1. for i = 0 to 5
  2. print(i)
  3. end
  4. for x = 0 to 2
  5. for y = 0 to 3
  6. print(x, " ", y)
  7. end
  8. end
  9. for x = 0 to 10
  10. for y = 0 to 5
  11. if y == 1
  12. continue
  13. end
  14. if y == 3
  15. continue
  16. end
  17. print(x, " ", y)
  18. end
  19. if x == 1
  20. break
  21. end
  22. end