Advertisement
notarazi

razi-pseudocode-display-array-values

Jun 22nd, 2013
12,934
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. BEGIN
  2. INITIALIZE ARRAY arr[5] TO CONTAIN VALUES 1,2,3,4,5
  3. PRINT "Displaying array values."
  4. FOR i := 1 to 5
  5. PRINT arr[i]
  6. END FOR LOOP
  7. PRINT "Done."
  8. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement