1112:一元二次方程求解问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ float a,b,c;&n…… 题解列表 2025年10月21日 0 点赞 0 评论 37 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] a…… 题解列表 2024年11月23日 0 点赞 0 评论 316 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) deter=b*b-4*a*c x1=(-b+deter**0.5)/2*a x2=(-b-deter…… 题解列表 2024年11月23日 0 点赞 0 评论 227 浏览 评分:0.0
题解 1112: C语言考试练习题_一元二次方程 摘要:### 解题思路: 一元二次方程,基础中的基础 (~~我也刚搞明白没多久~~) CSP总考这东西 没啥思路,这题那啥的地方就在于不给公式啊 ### 注意事项: 1.看样例,要输出小数所以用`…… 题解列表 2024年10月17日 1 点赞 0 评论 517 浏览 评分:9.9
一元二次方程--------------C语言 摘要:解题思路:利用求根公式注意事项:导入数学库<math.h>参考代码:#include <stdio.h> #include <math.h> int main() { float a, b,…… 题解列表 2024年07月25日 0 点赞 0 评论 446 浏览 评分:9.9
1112一元二次方程(数学求根公式解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ double a, b, c; cin …… 题解列表 2024年06月11日 0 点赞 0 评论 641 浏览 评分:0.0
1112:一元二次方程 摘要: # include <bits/stdc++.h> using namespace std; int main () { int a,b,c; cin >>a >>b >>…… 题解列表 2024年04月10日 0 点赞 0 评论 252 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程 摘要:解题思路:就数学公式的基本应用注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int m…… 题解列表 2024年03月12日 1 点赞 0 评论 296 浏览 评分:9.9
利用求根公式球一元二次方程的解 摘要:解题思路: 求根公式: x1=(-b-sqrt(b^2-4ac))/2a   题解列表 2024年03月07日 0 点赞 0 评论 295 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c;…… 题解列表 2024年01月22日 0 点赞 0 评论 270 浏览 评分:0.0