Как исправить ошибку multiple statements found while compiling a single statement ?
Есть во такой вот код
import math
a = float(input())
b = float(input())
c = float(input())
discr = b ** 2 - 4 * a * c
x = (-b + math.sqrt(discr)) / (2 * a)
print(x)
По дате
По рейтингу