Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. i := 1
  2. L3 :
  3. if i <= 10 goto L1
  4. t1 := false
  5. goto L2
  6. L1 :
  7. t1 := true
  8. L2 :
  9. if t1 = false goto L4
  10. t1 := i * i
  11. a[i] := t1
  12. t1 := i + 1
  13. i := t1
  14. goto L3
  15. L4 :
  16. t1 := a[5]
  17. param t1
  18. writeint
  19. writeln
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement