C语言考试练习题_一元二次方程 摘要:参考代码:#include<iostream> #include<cmath> #include<iomanip> using namespace std; double a,b,c,x1…… 题解列表 2021年03月12日 0 点赞 0 评论 158 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(Java代码) 摘要:import java.util.Scanner; import java.math.*; public class Main { public static void main(S…… 题解列表 2020年04月19日 0 点赞 0 评论 409 浏览 评分: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 评论 91 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(C语言代码) 摘要:** 参考代码: ** ```c #include #include int main() { double a,b,c; double d; while(scanf(…… 题解列表 2019年07月23日 0 点赞 0 评论 360 浏览 评分: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
C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路: 用公式法解方程,使用 判别式。注意事项: 判别式的值 强转(int)参考代码: x = pow(b,2); //判别式 y = x-4*a*c; // 判别式的值 k = (int)y…… 题解列表 2018年11月09日 0 点赞 0 评论 336 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float a,b,c; float m,n; scan…… 题解列表 2017年10月07日 0 点赞 0 评论 690 浏览 评分:0.0
编写题解 1112: C语言考试练习题_一元二次方程 摘要:解题思路:注意事项:参考代码:import matha,b,c=map(float,input().split())x = -math.sqrt(-c+(b/2*a)**2)-b/2*ay = mat…… 题解列表 2021年12月10日 0 点赞 0 评论 178 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] a…… 题解列表 2024年11月23日 0 点赞 0 评论 70 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(C语言代码) 摘要:```c #include #include int main() { double a, b, c, x1, x2; scanf("%lf%lf%lf", &a, &b,…… 题解列表 2020年10月03日 0 点赞 0 评论 210 浏览 评分:0.0