home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex70.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  259 b   |  11 lines

  1. Program Example70;
  2.  
  3. { Program to demonstrate the Trunc function. }
  4.  
  5. begin
  6.   Writeln (Trunc(123.456));  { Prints 123  }
  7.   Writeln (Trunc(-123.456)); { Prints -123 }
  8.   Writeln (Trunc(12.3456));  { Prints 12   }
  9.   Writeln (Trunc(-12.3456)); { Prints -12  }
  10. end.
  11.