Está en la página 1de 1

1)print("ingrese el valor de a")

a = float(input())

print(a)

total = a**(1/30)
print(total)

2)print("ingrese el valor de a:")


a = float(input())
print("ingrese el valor de b:")
b = float(input())

print(a, b)

total = 10-a-b/3
print(total)

3)print("ingrese el valor de a")


a = float(input())
print("ingrese el valor de b")
b = float(input())
print("ingrese el valor de c")
c = float(input())

print(a, b, c)

total = (3/a+5/b+7/c)/(a+b)
print(total)

4)print("ingrese el valor de a")


a = float(input())
print("ingrese el valor de b")
b = float(input())
print("ingrese el valor de c")
c = float(input())

print(a, b, c)

total = ((a)**(1/2)+(b)**(1/2))/(a)**(1/5)+3-(((a)**(1/2)+c)/(c-a))
print(total)

También podría gustarte