-Code
from math import sqrt
for _ in range(int(input())):
a, b, c = map(float, input().split())
res1 = (-b + sqrt(b ** 2 - 4 * a * c)) / (2 * a)
res2 = (-b - sqrt(b ** 2 - 4 * a * c)) / (2 * a)
print(f"{res1:.3f}, {res2:.3f}")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24198번 Muffinspelet (0) | 2024.07.08 |
---|---|
[백준/파이썬] 27475번 Cancel the Trains (0) | 2024.07.07 |
[백준/파이썬] 22277번 Non-Integer Donuts (1) | 2024.07.05 |
[백준/파이썬] 26392번 Desni klik (0) | 2024.07.04 |
[백준/파이썬] 26550번 Ornaments (0) | 2024.07.03 |