what is a(n) MATlab code that can help me calculate the volume of a cylinde then increase that result by 20% to get a result of 18m.

16 views (last 30 days)
The question im trying to ask is,volume of a circular cylinder of height h and radius r is given by the equation V = πr^2h. A cylindrical tank is 15 meters tall and has a radius of 8 meters. We want to construct another cylindrical tank with a 20% volume increase but has the same radius.
Im trying to figure out how to write a script for the following: that will output and display the new height of the cylinder. Use fprintf to display the new height (by referencing a variable) of the tank to 2 decimals. Your calculation should result in a height of 18m if correct

Accepted Answer

DGM
DGM on 19 Oct 2021
h0 = 15;
dV = 0.2;
hf = h0*(1+dV);
fprintf('Oh my god, it''s %.2f meters tall! Aieee!',hf)
Oh my god, it's 18.00 meters tall! Aieee!

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!