He should purchase a Desktop PC as it would allow him to install high-power parts such as RAM, Graphics Card and CPU.
The answer is input! because the input is what the user enters, the output is what comes out from that, and the text and value aren’t related to the user
Answer:
Answered below.
Explanation:
#Answer is written in Python programming language
#Get inputs
radius = float(input("Enter radius in inches: "))
height = float(input("Enter height in feet: "))
#Convert height in feet to height in inches
height_in_inches = height * 12
#calculate volume in cubic inches
volume = 3.14 * (radius**2) * height_to_inches
#convert volume in cubic inches to volume in gallons
volume_in_gallons = volume * 0.00433
#output result
print (volume_in_gallons)