Problem E: 函数的指针参数:求解二元一次方程组

Problem E: 函数的指针参数:求解二元一次方程组

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

Description



使用自定义函数void f(int a1, int b1, int c1, int a2, int b2, int c2,double *x,double *y); 求解二元一次方程组

函数的参数:a1、a2、b1、b2、c1、c2为方程组的系数,通过两个指针参数获得计算结果

Input

方程组的系数:a1、b1、c1、a2、b2、c2,均为正整数,且<1000

Output

方程组的解,格式见输出样例

Sample Input Copy

1  1  35
2  4  94

Sample Output Copy

23.000000
12.000000

HINT

用于测试函数的源程序: 

#include<stdio.h> 

int main() 

    int a1, b1, c1, a2, b2, c2; 
    double x , y; 
    scanf("%d%d%d%d%d%d",&a1,&b1,&c1,&a2,&b2,&c2); 
    f(a1,b1,c1,a2,b2,c2,&x,&y); 
    printf("%f\n%f\n", x, y );