Help for this page

Select Code to Download


  1. or download this
      my $a = 4253.95;
      my $b = 0.9;
      my $c = $a + $b;
      print "$a + $b = $c\n";
      printf "%.30f + %.30f = %.30f\n", $a, $b, $c;