优质题解 Manchester- C语言考试练习题_一元二次方程 摘要:解题思路:输入a,b,c以文件结束符结束;根据题目输出形式,先输出(-b+sqrt(pow(b,2)-4*a*c))/2*a; 再输出( -b-sqrt(pow(b,2)-4*a*c))/2*a;这道…… 题解列表 2018年05月24日 24 点赞 9 评论 5067 浏览 评分:9.6
C语言考试练习题_一元二次方程-题解(Java代码) 摘要:解题思路:注意事项:x=(-b±√(b^bai2-4ac))/(2a)参考代码: Scanner sc=new Scanner(System.in); int a=sc.nextInt…… 题解列表 2021年01月15日 0 点赞 0 评论 762 浏览 评分:9.9
C语言考试练习题_一元二次方程 (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanner cin=n…… 题解列表 2017年12月30日 0 点赞 0 评论 1681 浏览 评分:9.9
题解 1112: C语言考试练习题_一元二次方程 摘要:### 解题思路: 一元二次方程,基础中的基础 (~~我也刚搞明白没多久~~) CSP总考这东西 没啥思路,这题那啥的地方就在于不给公式啊 ### 注意事项: 1.看样例,要输出小数所以用`…… 题解列表 2024年10月17日 1 点赞 0 评论 630 浏览 评分:9.9
一元二次方程--------------C语言 摘要:解题思路:利用求根公式注意事项:导入数学库<math.h>参考代码:#include <stdio.h> #include <math.h> int main() { float a, b,…… 题解列表 2024年07月25日 0 点赞 0 评论 535 浏览 评分:9.9
C语言考试练习题_一元二次方程 (C++代码)水啊!!! 摘要:解题思路: 争取把这几页全部搞成绿色,水啊!!!参考代码:#include <iostream> #include <cmath> #include <iomanip> #define h…… 题解列表 2019年03月06日 0 点赞 1 评论 897 浏览 评分:9.9
1112: C语言考试练习题_一元二次方程 摘要:解题思路:就数学公式的基本应用注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int m…… 题解列表 2024年03月12日 1 点赞 0 评论 362 浏览 评分:9.9
Kanna-一元二次方程--C 摘要: #include #include int main() { int a, b, c; scanf("%d %d %d…… 题解列表 2019年12月24日 0 点赞 0 评论 1164 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月06日 0 点赞 0 评论 428 浏览 评分:9.9