Respuesta :

Answer:

See the program code below.

Explanation:

def cube_SA(edge):

 edge = int(input("Enter the cube's edge: "))

 sa = edge * edge * 6

 print("The surface area is {} square units".format(sa))

cube_SA(4)

Best Regards!

In this exercise we have to use the computer language knowledge in python to write the code.

This code can be found in the attachment.

So we have what the code in python is:

def cube_SA(edge):

edge = int(input("Enter the cube's edge: "))

sa = edge * edge * 6

print("The surface area is {} square units".format(sa))

cube_SA(4)

See more about python at brainly.com/question/18502436

Ver imagen lhmarianateixeira