“1036 Solución Python” Código de respuesta

1036 Solución Python

import math
A,B,C = map(float,input().split())
D = (B**2)-(4*A*C)
if(D <0 or A==0):
    print("Impossivel calcular")
else:
    D=math.sqrt(D)
    R1 = (-B+D)/(2*A)
    R2 = (-B-D)/(2*A)
    print(f'R1 = {R1:0.5f}\nR2 = {R2:0.5f}')
Energetic Emu

1036 Solución Python


sudo chown -R mysql:mysql /var/lib/mysql

Aggressive Antelope

Respuestas similares a “1036 Solución Python”

Preguntas similares a “1036 Solución Python”

Más respuestas relacionadas con “1036 Solución Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código