lunes, 18 de febrero de 2019

Librerias Python

 
      

import math
 
 
print "Ingrese el valor de un cateto:"
a = int (input(""))
 
print "Ingrese el valor del otro cateto:"
b = int ( input(""))
 
 
res = math.hypot(a, b)
 
print "La hipotenusa del triangulo es: "  , res



No hay comentarios:

Publicar un comentario