Respuesta :
Answer:
Program in Python:
edge = float(input("Edge Length: "))
area = 6 * edge**2
print("Surface Area: "+str(area))
Explanation:
This line prompts the user for the length of the edge
edge = float(input("Edge Length: "))
This calculates the surface area using [tex]Area = 6a^2[/tex]
area = 6 * edge**2
This prints the calculated surface area
print("Surface Area: "+str(area))
This solution was implemented in Python
Answer:
edge=float(input("Enter the cube's edge: "))
area=6*edge**2
print("The surface area is: "+str(area), "square units.")
Explanation:
request input
computer income tax
then display information