51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#一元二次方程
一元二次方程
1#include<iostream>2#include<cmath>3/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5intmain(i...
代码星球
·
2021-02-12
一元二次方程
请定义一个函数 quadratic(a, b, c),接收 3 个参数,返回一元二次方程: ax2 + bx + c = 0 的两个解
importmath#定义一个函数,接受三个参数,返回一个一元二次方程的两个解defquadratic(a,b,c):m=b*b-4*a*cifm>=0:x=(-b+math.sqrt(m))/(2*a)y=(-b-math.sqrt(m))/(2*a)returnx,yelse:return'noanswer!...
代码星球
·
2020-04-06
定义
一个
函数
quadratic
接收
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他