11 lines
153 B
Python
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: ") |