ex4.pp 157 B

12345678910
  1. Program Example4;
  2. { Program to demonstrate the ArcTan function. }
  3. Var R : Real;
  4. begin
  5. R:=ArcTan(0); { R:=0 }
  6. R:=ArcTan(1)/pi; { R:=0.25 }
  7. end.