Help for this page

Select Code to Download


  1. or download this
    print int('141.32124355465');
    
    __OUTPUT__
    141
    
  2. or download this
    my $num = 141.32124355465;
    $num =~ s/\.\d+$//;
    ...
    
    __OUTPUT__
    141