Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Raise I to a powerRetrieve the natural logarithm ... (Berikutnya)
Numeric functions

Get the integer portion of a number

Daftar Isi

  • int EXPR

  • int

    Returns the integer portion of EXPR. If EXPR is omitted, uses $_.You should not use this function for rounding: one because it truncatestowards 0, and two because machine representations of floating-pointnumbers can sometimes produce counterintuitive results. For example,int(-6.725/0.025) produces -268 rather than the correct -269; that'sbecause it's really more like -268.99999999999994315658 instead. Usually,the sprintf, printf, or the POSIX::floor and POSIX::ceilfunctions will serve you better than will int().

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Raise I to a powerRetrieve the natural logarithm ... (Berikutnya)