Kanna-一元二次方程--C 摘要: #include #include int main() { int a, b, c; scanf("%d %d %d…… 题解列表 2019年12月24日 0 点赞 0 评论 786 浏览 评分:9.9
题解 1112: C语言考试练习题_一元二次方程 摘要:### 解题思路: 一元二次方程,基础中的基础 (~~我也刚搞明白没多久~~) CSP总考这东西 没啥思路,这题那啥的地方就在于不给公式啊 ### 注意事项: 1.看样例,要输出小数所以用`…… 题解列表 2024年10月17日 0 点赞 0 评论 397 浏览 评分:9.9
一元二次方程--------------C语言 摘要:解题思路:利用求根公式注意事项:导入数学库<math.h>参考代码:#include <stdio.h> #include <math.h> int main() { float a, b,…… 题解列表 2024年07月25日 0 点赞 0 评论 359 浏览 评分:9.9
C语言考试练习题_一元二次方程-题解(Java代码) 摘要:解题思路:注意事项:x=(-b±√(b^bai2-4ac))/(2a)参考代码: Scanner sc=new Scanner(System.in); int a=sc.nextInt…… 题解列表 2021年01月15日 0 点赞 0 评论 552 浏览 评分:9.9
C语言考试练习题_一元二次方程-题解(Java代码) 摘要:解题思路:注意事项:正负两个根参考代码:import java.util.Scanner;public class Main { public static void main(String[] ar…… 题解列表 2021年01月15日 0 点赞 0 评论 414 浏览 评分:9.9
1112: C语言考试练习题_一元二次方程 摘要:解题思路:就数学公式的基本应用注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int m…… 题解列表 2024年03月12日 1 点赞 0 评论 221 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月06日 0 点赞 0 评论 342 浏览 评分:9.9
C语言考试练习题_一元二次方程 (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanner cin=n…… 题解列表 2017年12月30日 0 点赞 0 评论 1382 浏览 评分:9.9
一元二次方程的一种解法 摘要:#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 评论 626 浏览 评分:9.9
入门算法,简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,x2,a,b,c,d,t; scanf("%lf…… 题解列表 2022年10月04日 0 点赞 0 评论 347 浏览 评分:9.9