Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    my $a = 27 ** (1/3);  # 1/3 represents cube root
    print "a = $a";
    exit;
    
  2. or download this
    a = 3