就是用不同的声明方式去做同样的事情:求二次方程的解。
三种函数声明方式:
void function1(int a,int b,int c,int *y);int function2(int a,int b,int c);int function2(int *a,int *b,int *c);