编写题解 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
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 评论 231 浏览 评分:0.0
1112我是服了,如果没有记得方程的简便解法,怎么写? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,x2,a,b,c,d,t; scanf("%lf…… 题解列表 2021年11月07日 0 点赞 0 评论 165 浏览 评分: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 评论 200 浏览 评分:0.0
C语言考试练习题_一元二次方程 摘要:解题思路:判断b的平方减4ac是否大于零,大于零有两个解,等于零有一个,小于零没有。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ …… 题解列表 2021年09月13日 0 点赞 0 评论 254 浏览 评分:0.0
一元二次方程的一种解法 摘要:#include<stdio.h>#include<math.h>int main(){ int a,b,c; float x,z,x1,x2,t; scanf("%d %d %d",&a…… 题解列表 2021年09月01日 0 点赞 0 评论 554 浏览 评分:9.9
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; public class Main { public static void main(String[] args…… 题解列表 2021年02月15日 0 点赞 0 评论 148 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(C语言代码) 摘要:解题思路:根据题目解题就好注意事项:注意好定义的变量的类型参考代码:#include<stdio.h>#include<math.h> int main() { float a,b,c;//定义所…… 题解列表 2021年02月06日 0 点赞 0 评论 188 浏览 评分:9.0
C语言考试练习题_一元二次方程-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c,t; double x1,x2; scanf("%d %d …… 题解列表 2021年02月03日 0 点赞 0 评论 155 浏览 评分:0.0