自定义函数求一元二次方程 摘要:#include<bits/stdc++.h> using namespace std; int main() { double a,b,c,x1,x2;cin>>a>>b>>c; …… 题解列表 2024年11月23日 1 点赞 0 评论 533 浏览 评分:10.0
自定义函数求一元二次方程,非常简单的做法 摘要:参考代码:#include<iostream> #include<math.h>using namespace std;int main(){ double a,b,c; double x1,x2,x…… 题解列表 2024年03月18日 0 点赞 0 评论 223 浏览 评分:0.0
简单方法求解自定义函数求一元二次方程 摘要:解题思路:要求解此题,需要知道以下几点:一、读懂题目意思,题目大意为:用户输入a,b,c; 程序执行完后输出x1,x2二、要得到x1,x2,需求出△值△=b^2-4*a*c三、△分为3种情况,每种情…… 题解列表 2024年01月18日 0 点赞 0 评论 122 浏览 评分:0.0
1028: [编程入门]自定义函数求一元二次方程(C++) 摘要:解题思路:求根公式:x=-b/(2*a)±√Δ/2*a其中定义 Δ=b*b-4*a*cΔ>=0时,方程有实数根需要注意考虑虚根情况,即Δ<0时 方程有虚根,计算时Δ取相反数 ,结果加虚数符号(i)参考…… 题解列表 2023年09月26日 0 点赞 0 评论 153 浏览 评分:9.0
1028: [编程入门]自定义函数求一元二次方程 摘要:```cpp #include #include using namespace std; /* 求方程 的根,用三个函数分别求当b^2-4ac大于0、等于0、和小于0时的根,并输出结果。 …… 题解列表 2023年02月19日 0 点赞 1 评论 254 浏览 评分:9.9
1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>double sum1,m;double jie(int a,int b,int c){ m=b*b-4*a*c; sum1…… 题解列表 2022年12月05日 0 点赞 0 评论 102 浏览 评分:9.9
自定义函数求一元二次方程 摘要: #include #include #include using namespace std; float a, b, c, d, x1, x2; …… 题解列表 2022年10月11日 0 点赞 0 评论 89 浏览 评分:0.0
1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:保留三位小数参考代码:#include <iostream> #include <cmath> #include <iomanip> using namespace std;…… 题解列表 2022年10月11日 0 点赞 0 评论 105 浏览 评分:0.0
1028-自定义函数求一元二次方程 语言:C++ 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void f1(int a,int b,int d) { int x1=(-b+sqrt(…… 题解列表 2022年10月05日 0 点赞 0 评论 181 浏览 评分:0.0
[编程入门]自定义函数求一元二次方程 摘要:参考代码:#include<iostream>#include<iomanip>#include<cmath>using namespace std;double x1,x2,a,b,c,z;void…… 题解列表 2022年08月04日 0 点赞 0 评论 282 浏览 评分:9.9