ex17.pp 129 B

123456789
  1. Program Example17;
  2. { Program to demonstrate the hypot function. }
  3. Uses math;
  4. begin
  5. Writeln(hypot(3,4)); // should be 5
  6. end.