Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    for( $i = 0; $i < 5; $i++ ) {
      printf "%d: %s %d %f\n", $i, $a[$i], $a[$i], $a[$i];
    }
    
  2. or download this
    0: 0 0
    1: 1 1
    ...
    2: 2 1 2.000000   *
    3: 3 3 3.000000
    4: 4 4 4.000000