1112一元二次方程(数学求根公式解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ double a, b, c; cin …… 题解列表 2024年06月11日 0 点赞 0 评论 124 浏览 评分:0.0
1112:一元二次方程 摘要: # include <bits/stdc++.h> using namespace std; int main () { int a,b,c; cin >>a >>b >>…… 题解列表 2024年04月10日 0 点赞 0 评论 105 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程 摘要:解题思路:就数学公式的基本应用注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int m…… 题解列表 2024年03月12日 0 点赞 0 评论 115 浏览 评分:9.9
1112: C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c;…… 题解列表 2024年01月22日 0 点赞 0 评论 110 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c; cin >>…… 题解列表 2023年06月17日 0 点赞 0 评论 53 浏览 评分:0.0
题解 1112: C语言考试练习题_一元二次方程 摘要:解题思路:想做这道题,需要先搞清楚一元二次方程,这里就不多说了直接套公式:x1 = -b+√b^2-4ac 2a …… 题解列表 2023年05月13日 0 点赞 0 评论 107 浏览 评分:9.9
一元二次方程 摘要:解题思路:还是定义函数好用,这不用管负值,用if分类传-b*b+4ac即可解决gen小于0注意事项:参考代码:#include<iostream> #include<cmath>//用sqrt开方 …… 题解列表 2023年04月03日 0 点赞 0 评论 42 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程 摘要:```cpp #include #include using namespace std; // 解一元二次方程ax^2+bx+c=0的解 // 输出两个解,按照大小顺序输出,一个解时需要打…… 题解列表 2023年02月27日 0 点赞 1 评论 95 浏览 评分:9.9
C语言考试练习题_一元二次方程(怀氏C++) 摘要:#include<iostream> using namespace std; #include<cmath> #include<iomanip> int main() { int…… 题解列表 2022年10月25日 0 点赞 0 评论 167 浏览 评分:9.9
1112-一元二次方程 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath> using namespace std;int main(){ int a,b,c; cin >>a …… 题解列表 2022年10月06日 0 点赞 0 评论 50 浏览 评分:0.0