ex62.pp 161 B

12345678
  1. Program Example62;
  2. { Program to demonstrate the Sin function. }
  3. begin
  4. Writeln (Sin(Pi):0:1); { Prints 0.0 }
  5. Writeln (Sin(Pi/2):0:1); { Prints 1.0 }
  6. end.