题解 1028: [编程入门]自定义函数求一元二次方程

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1028题: 自定义函数求一元二次方程

摘要:# 自己写的代码 这道题不会,还是涉及主函数调用,另外关于二次函数的求解也不会用表达式表示 # 参考代码1 ```c #include #include DAYL(float a, flo……

求方程的根

摘要:#include<stdio.h>#include<math.h>int main(){ int a,b,c; double p,q; scanf("%d%d%d",&a,&b,&c); p=-b/(……

简单点自定义函数求解

摘要:自定义函数求解 #include #include//要用到sqrt()和pow()函数 float deta(int a,int b,int c) { float ……