Ejercicio
Esfera De Punto Flotante
Objectivo
Desarrolla un programa en Python que calcule el área de la superficie y el volumen de una esfera, dado su radio (área de la superficie = 4 * pi * radio al cuadrado; volumen = 4/3 * pi * radio al cubo).
Nota: Para números de punto flotante, debes usar float(...)
Ejemplo de ejercicio de Python
Mostrar código Python
import math # Import math module to use pi
# Prompt the user for the radius of the sphere
radius = float(input("Enter the radius of the sphere: "))
# Calculate the surface area and volume
surface_area = 4 * math.pi * radius**2
volume = (4/3) * math.pi * radius**3
# Display the results
print(f"Surface area: {surface_area:.2f} square units")
print(f"Volume: {volume:.2f} cubic units")
Output
Case 1:
Enter the radius of the sphere: 5
Surface area: 314.16 square units
Volume: 523.60 cubic units
Case 2:
Enter the radius of the sphere: 2.5
Surface area: 61.55 square units
Volume: 65.45 cubic units
Código de ejemplo copiado
Comparte este ejercicio de Python