Generation

translateMon, 17 Apr 2023

Escribir un programa que calcule el área superficial de un cono recto

from math import pi def main(): r = input("Enter radius: ") h = input("Enter height: ") area = pi * r * (r + sqrt(h*h + r*r)) print area

Want to kickstart your project?Use the new AI Studio to create your code