C语言考试练习题_一元二次方程--java语言 摘要:解题思路:①导入Scanner②输入a,b,c③输出x1,x2④保留两位输出注意事项:①导入②开方计算时使用sqrt(若没有提前导入Math,则需要在运行时写上:Math.sqrt())参考代码:im…… 题解列表 2023年12月06日 0 点赞 0 评论 50 浏览 评分:0.0
1112:一元二次方程 摘要: # include <bits/stdc++.h> using namespace std; int main () { int a,b,c; cin >>a >>b >>…… 题解列表 2024年04月10日 0 点赞 0 评论 114 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(C语言代码) 摘要:** 参考代码: ** ```c #include #include int main() { double a,b,c; double d; while(scanf(…… 题解列表 2019年07月23日 0 点赞 0 评论 375 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码),最简代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a,b,c; scanf("%f%f%f",&a,&b,&c); if(b*b-4…… 题解列表 2018年03月17日 0 点赞 0 评论 864 浏览 评分:0.0
1112很狠狠太狠了 摘要:解题思路:注意事项:注意输出两个值如果x1等x2参考代码:#include<stdio.h>#include<math.h>int main(){ float a,b,c,d,x1,x2,p,q;…… 题解列表 2021年11月09日 0 点赞 0 评论 239 浏览 评分:0.0
C语言考试练习题_一元二次方程 摘要:参考代码:#include<iostream> #include<cmath> #include<iomanip> using namespace std; double a,b,c,x1…… 题解列表 2021年03月12日 0 点赞 0 评论 160 浏览 评分: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 评论 81 浏览 评分: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语言代码) 摘要:解题思路: 用公式法解方程,使用 判别式。注意事项: 判别式的值 强转(int)参考代码: x = pow(b,2); //判别式 y = x-4*a*c; // 判别式的值 k = (int)y…… 题解列表 2018年11月09日 0 点赞 0 评论 341 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:运用求根公式进行分类讨论注意事项: %c前加空格参考代码:# include <stdio.h># include <math.h>int main (void){ double a,b,c…… 题解列表 2018年07月21日 1 点赞 0 评论 1173 浏览 评分:0.0