1028: C语言-解方程

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:87 Solved:40

Description

求方程 的根,用三个函数分别求当b^2-4ac大于0、等于0、和小于0时的根,并输出结果。从主函数输入a、b、c的值。

Input

a b c

Output

x1=? x2=?

Sample Input Copy

4 1 1

Sample Output Copy

x1=-0.125+0.484i x2=-0.125-0.484i