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.

18 lines
312 B
Perl

#! /usr/local/bin/perl
$a = 4.2 + 3;
print "The result of 4.2 + 3 is $a \n";
$a = 4.2 - 3;
print "The result of 4.2 - 3 is $a \n";
$a = 4.2 * 3;
print "The result of 4.2 * 3 is $a \n";
$a = 26 / 8;
print "The result of 26 / 8 is $a \n";
$a = 26 % 8;
print "The result of 26 % 8 is $a \n";