解题思路:
注意事项:
参考代码:
def dayu(b,c,d):
g = (-c + f) / (2 * b)
h = (-c - f) / (2 * b)
print("x1={:.3f} x2={:.3f}".format(g, h))
def dengyu(b,c,d):
g = h = (-c + f) / (2 * b)
print("x1={:.3f} x2={:.3f}".format(g, h))
def xiaoyu(b,c,d):
g = (-c) / (2 * b)
h = (pow(-e, 0.5)) / (2 * b)
print("x1={:.3f}+{:.3f}i x2={:.3f}-{:.3f}i".format(g, h, g, h))
a=list(map(int,input().split()))
b=a[0]
c=a[1]
d=a[2]
e=c**2-4*b*d
f=pow(e,0.5)
if e>0:
dayu(b,c,d)
elif e==0:
dengyu(b,c,d)
elif e<0:
xiaoyu(b,c,d)
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题7.4 (Java代码)浏览:873 |
矩阵乘法 (C++代码)浏览:1662 |
不容易系列 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:949 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:562 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1186 |
WU-整数平均值 (C++代码)浏览:1307 |
A+B for Input-Output Practice (VI) (C语言代码)浏览:575 |
字符串输入输出函数 (C语言代码)浏览:2604 |