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 ビュー (過去 30 日間)
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

採用された回答

DGM
DGM 2021 年 10 月 19 日
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!

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by