ex66.pp 162 B

12345678
  1. Program Example66;
  2. { Program to demonstrate the Sqrt function. }
  3. begin
  4. Writeln (Sqrt(4):0:3); { Prints 2.000 }
  5. Writeln (Sqrt(2):0:3); { Prints 1.414 }
  6. end.