C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float a,b,c; float m,n; scan…… 题解列表 2017年10月07日 0 点赞 0 评论 699 浏览 评分:0.0
C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int a,b,c; scanf("%d%d%d",&a,&…… 题解列表 2023年10月08日 0 点赞 0 评论 89 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(C语言代码)完全不用数组和定义函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){double a,b,c,i,j,h,sq;scanf("%lf %lf %lf"…… 题解列表 2020年11月20日 0 点赞 0 评论 274 浏览 评分: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
编写题解 1112: C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double a,b,c,x1,x2; scanf("%lf %lf %lf",…… 题解列表 2022年03月09日 0 点赞 0 评论 192 浏览 评分:0.0
一元二次方程 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c; float x1,x2; scanf("…… 题解列表 2022年12月20日 0 点赞 0 评论 66 浏览 评分: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
一元二次方程 摘要:解题思路:还是定义函数好用,这不用管负值,用if分类传-b*b+4ac即可解决gen小于0注意事项:参考代码:#include<iostream> #include<cmath>//用sqrt开方 …… 题解列表 2023年04月03日 0 点赞 0 评论 44 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程-题解(python) 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())m = b**2 - 4*a*cm = m**(0.5)x = (-b + m)/2y = (-b - m…… 题解列表 2021年10月19日 0 点赞 1 评论 204 浏览 评分:0.0
C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double a,b,c,x1,x2,d,t; scanf(…… 题解列表 2022年12月24日 0 点赞 0 评论 72 浏览 评分:0.0