You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
292 B
Perl

#!/usr/bin/perl -w
use strict;
use Switch;
my $input;
sub lessthan { $input < $_[0] };
$input=int(<>);
switch ( \&lessthan ) {
case 10 { print "less than 10\n" }
case (100-$input) { print "less than 50\n" }
case 100 { print "less than 100\n" }
}