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.

11 lines
363 B
Perl

print "Please enter a numerator: ";
chomp( $numerator = <STDIN> );
print "Please enter a denominator: ";
chomp( $denominator = <STDIN> );
# if condition is false, program prints message and terminates
$denominator != 0 or die "Cannot divide by zero";
# executes only if $denominator is not 0
print "\nThe result is ", $numerator / $denominator, "\n";