C语言实验——一元二次方程Ⅰ
Time Limit: 1000 ms Memory Limit: 65536 KiB
Problem Description
解一元二次方程ax2+bx+c=0的解。保证有解
Input
a,b,c的值。
Output
两个根X1和X2,其中X1>=X2。 结果保留两位小数。
Sample Input
1 5 -2
Sample Output
0.37 -5.37
Hint
提示:计算过程中,分母是(2*a)
#include <stdio.h>
#include<stdlib.h>
#include<math.h>
void f(int a, int b, int c)
{
double x1, x2, t;