Problem E: 【函数的指针参数】求解一元二次方程AX2+BX+C=0

Problem E: 【函数的指针参数】求解一元二次方程AX2+BX+C=0

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 383  Solved: 232
[Submit] [Status] [Web Board] [Creator:]

Description

使用自定义函数solve(int a, int b,int c,float *x1,float *x2); 求解一元二次方程 
函数的参数:a、b、c为方程的系数,通过两个指针参数获得计算结果

裁判测试程序如下

#include <stdio.h>

#include <math.h>

void solve(int a, int b,int c,float *x1,float *x2);

int main() 

    int a,b,c; 
    float x1,x2; 
    scanf("%d%d%d",&a,&b,&c); 
    solve(a,b,c,&x1,&x2); 
    printf("%f %f\n",x1,x2); 

 

 

Sample Input Copy

1 4 3

Sample Output Copy

-1.000000 -3.000000

HINT