mundoss2

Untitled

May 31st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. A: array[1..100] of integer;
  2. |1 |2 |3 |4
  3. A |[]|[]|[]|[]
  4.  
  5. A[1]:=3;
  6. A[2]:=4;
  7. A[3]:=9;
  8. A[4]:=1;
  9. A[5]:=100;
  10.  
  11.  
  12. |1|2|3|4|5
  13. A|3|4|9|1|100
  14.  
  15.  
  16. b:=A[1]+3;
  17. writeln(b); ->6
  18. writeln(A[1]); ->3
Advertisement
Add Comment
Please, Sign In to add comment