Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
       print  "Bad input\n";
       exit;
    }
    
  2. or download this
    ww@GIG:~/pl_test$ perl 675693.pl
    Enter a positive integer: -3
    Bad input
    ...
    Enter a positive integer: 1.35
    Bad input
    ww@GIG:~/pl_test$