2
0

ex65.pp 142 B

123456789
  1. Program Example65;
  2. { Program to demonstrate the Sqr function. }
  3. Var i : Integer;
  4. begin
  5. For i:=1 to 10 do
  6. writeln (Sqr(i):3);
  7. end.