Files
ProgrammierungUndDatenanalyse/Vorlesung 2/Uebung6.py
dev weycloud 5562abd79b Vorlesung 2
2021-09-23 19:58:44 +02:00

11 lines
153 B
Python

# pq formel
print("Berechnung mittels pq-Formel.")
a = input("a =")
b = input("b =")
c = input("c =")
# pq = a*x**2 + b*x + c = 0
print("Ergebnis: ")