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
2 odpowiedzi
+ 2
Thank you Tibor Santa!
+ 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.