Advertisement
oprepeti

Untitled

Oct 21st, 2019
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.21 KB | None | 0 0
  1. {5 elemű tömb}
  2.  
  3. Program constanstomb;
  4. Uses crt;
  5. Const
  6. v1=1;
  7. V2=2;
  8. V3=3;
  9. V4=4;
  10. V5=5;
  11. Var
  12. v:array[1..5] of integer;
  13. Begin
  14. ClrScr;
  15. Writeln(v1,',  ', v2,',  ' ,v3,',  ' ,v4,',  ', v5);
  16. readln;
  17.  
  18. End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement