Help for this page

Select Code to Download


  1. or download this
    perl -Minteger -e 'print 15/2 + 1'
    
  2. or download this
    use strict;
    use warnings;
    my $eight = int (15 / 2 ) +1;
    print $eight;