Friday, August 5, 2016

Addition of Five Numbers in Perl CGI

A sample program that I wrote that will compute the sum of the five numbers using Perl CGI it will display the result in the web page in your web browser.

Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.



Sample Program Output

Program Listing

#!"C:\xampp\perl\bin\perl.exe"
print "content-type: text/html \n\n";
print "<html>";
print "<body>";

$a=2;
$b=3;
$c=5;
$d =3;
$e = 2;

$sum = ($a + $b + $c + $d + $e);

print "<font color='blue'>";
print "<br>";
print " <h2> Addition of Five Numbers </h2>";
print "<font size='5'>The value in A is $a. </font><br>";
print "<font size='5'>The value in B is $b. </font><br>";
print "<font size='5'>The value in C is $c. </font><br>";
print "<font size='5'>The value in D is $d. </font><br>";
print "<font size='5'>The value in E is $e. </font><br>";

print "<br><br>";
print "<font size='5'>The sum of $a ,$b , $c, $d and $e is $sum. </font>";
print "</font>";
print "</body>";
print "</html>";


# test.pl
# if you are using xampp with installed perl interpreter
# save your file for example test.pl in the following 
# directories in xampp.  example  c:\xampp\cgi-bin\test.pl
# to run the script.
# Issue this command for example
#
# localhost:1234/cgi-bin/test.pl
##








No comments:

Post a Comment