Solver Volume of a Hollow Cylinder
Algebra
->
Volume
-> Solver Volume of a Hollow Cylinder
Log On
Geometry: Volume, Metric volume
Geometry
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'Volume of a Hollow Cylinder'
This Solver (Volume of a Hollow Cylinder)
was created by by
zerosignal(28)
:
View Source
,
Show
,
Put on YOUR site
About zerosignal
:
mechanical engineer
==section input Find volume of a hollow cylinder: outside diameter *[input x=2] inside diameter *[input y=1] height *[input h=3] ==section solution perl $v = .7854*$h*(($x*$x)-($y*$y)); print "Volume of a hollow cylinder {{{V=.7854*h*(x^2-y^2) = .7854*$h*($x^2-$y^2) = $v}}}"; ==section output v ==section check