Solver Area of Parallelogram
Algebra
->
Parallelograms
-> Solver Area of Parallelogram
Log On
Geometry: Parallelograms
Geometry
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'Area of Parallelogram'
This Solver (Area of Parallelogram)
was created by by
chillaks(0)
:
View Source
,
Show
,
Put on YOUR site
About chillaks
:
am a freelancer
==section input The area of parallelogram when height *[input h=5] and base *[input b=3] is. ==section solution perl if($h<=0 || $b<=0) { print " Please enter the value greater than 0 to calculate area of parallelogram"; } else{ my $area=$b*$h; print " The area of <A HREF=http://www.algebra.com/algebra/homework/Rectangles/Different-between-parallelogram-rectangle-square-rhombus-and-trapezoid.lesson>parallelogram</A> The area of parallelogram is given by formula {{{Area=Base*Height}}} {{{Area=$b*$h=$area}}} Hence, The area of a Parallelogram is $area. "; } ==section output area, ==section check h=12 b=6 area=72