ex43.pp 198 B

12345678910
  1. Program Example43;
  2. { Program to demonstrate the Odd function. }
  3. begin
  4. If Odd(1) Then
  5. Writeln ('Everything OK with 1 !');
  6. If Not Odd(2) Then
  7. Writeln ('Everything OK with 2 !');
  8. end.