C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ double data,y1,y2; int a,b,c; …… 题解列表 2023年09月24日 0 点赞 0 评论 250 浏览 评分: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 评论 379 浏览 评分:0.0
C语言考试练习题_一元二次方程 摘要:解题思路:判断b的平方减4ac是否大于零,大于零有两个解,等于零有一个,小于零没有。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ …… 题解列表 2021年09月13日 0 点赞 0 评论 414 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c; cin >>…… 题解列表 2023年06月17日 0 点赞 0 评论 238 浏览 评分:0.0
C语言考试练习题_一元二次方程 摘要:参考代码:#include<iostream> #include<cmath> #include<iomanip> using namespace std; double a,b,c,x1…… 题解列表 2021年03月12日 0 点赞 0 评论 282 浏览 评分:0.0
C语言考试练习题_一元二次方程-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2021年02月15日 0 点赞 0 评论 278 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程(c语言) 摘要:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c; float m,x1,x2,t; scanf("%d %d %d",&a,&b…… 题解列表 2023年07月04日 0 点赞 0 评论 214 浏览 评分:0.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 评论 306 浏览 评分:0.0
一元二次方程 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] ar…… 题解列表 2023年07月15日 0 点赞 0 评论 252 浏览 评分:0.0
一元二次方程 摘要:解题思路:还是定义函数好用,这不用管负值,用if分类传-b*b+4ac即可解决gen小于0注意事项:参考代码:#include<iostream> #include<cmath>//用sqrt开方…… 题解列表 2023年04月03日 0 点赞 0 评论 145 浏览 评分:0.0