Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- A: array[1..100] of integer;
- |1 |2 |3 |4
- A |[]|[]|[]|[]
- A[1]:=3;
- A[2]:=4;
- A[3]:=9;
- A[4]:=1;
- A[5]:=100;
- |1|2|3|4|5
- A|3|4|9|1|100
- b:=A[1]+3;
- writeln(b); ->6
- writeln(A[1]); ->3
Advertisement
Add Comment
Please, Sign In to add comment