C语言考试练习题_一元二次方程-题解(C语言代码) 摘要:#include #include #include #include int main() { double a,b,c,d,e; scanf("%lf%lf%lf",&a,&b,…… 题解列表 2019年08月27日 0 点赞 0 评论 719 浏览 评分:0.0
一元二次方程 摘要:解题思路:还是定义函数好用,这不用管负值,用if分类传-b*b+4ac即可解决gen小于0注意事项:参考代码:#include<iostream> #include<cmath>//用sqrt开方 …… 题解列表 2023年04月03日 0 点赞 0 评论 44 浏览 评分:0.0
编写题解 1112: C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())deta = (b**2 - 4*a*c)**(1/2)x1 = (-b + deta)/(2*a)x2 …… 题解列表 2022年06月01日 0 点赞 0 评论 82 浏览 评分:0.0
1112一元二次方程(数学求根公式解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ double a, b, c; cin …… 题解列表 2024年06月11日 0 点赞 0 评论 142 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c; double x; scanf("%d%d%d",&a,&…… 题解列表 2019年05月25日 0 点赞 0 评论 1002 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { double a,b,c; doubl…… 题解列表 2019年11月24日 0 点赞 0 评论 289 浏览 评分:0.0
【优质题解】C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double a,b,c,f,s; scanf("%lf %lf %lf",&a…… 题解列表 2018年08月28日 1 点赞 0 评论 736 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float a,b,c,d,x1,x2,t; scanf("%f%f…… 题解列表 2017年08月27日 0 点赞 0 评论 884 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码) 摘要:#include <stdio.h>#include <math.h>int main(){ int a,b,c; double d,X1,X2; scanf("%d%d%d…… 题解列表 2018年02月02日 0 点赞 0 评论 697 浏览 评分:0.0
编写题解 1112: C语言考试练习题_一元二次方程(哈哈哈,笨比写法) 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())q=b*b-4*a*cm=(-b+pow(q,0.5))/2n=(-b-pow(q,0.5))/2if q>0…… 题解列表 2022年12月17日 0 点赞 0 评论 97 浏览 评分:0.0