Need help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Need help

Hello All, I need help making a flow chart for the area of 0.79 * diameter ^2 circle and Volume of a rectangular prism length, height, and width. So far, I have (start), (input r). First time working with Python. Can someone please help me? Thanks, alisha

24th Jan 2020, 3:14 AM
alisha jones
alisha jones - avatar
2 Answers
+ 2
Thank you Tibor Santa!
24th Jan 2020, 7:20 PM
alisha jones
alisha jones - avatar
+ 4
For a pseudocode, the programming language does not matter. You basically just need to draft your thought process, or steps what your program should follow. Take input from user (which data do you need?) Calculate result (what is the formula?) Print result (what format? How many decimals?) A circle's area is r*r*pi so you need the radius, not the diameter.
24th Jan 2020, 3:36 AM
Tibor Santa
Tibor Santa - avatar