- 博客(7)
- 收藏
- 关注
原创 三个数字,找最大值、求和、求两点之间距离、斜率
------三个数字找最大值------import math # import math modulea=int(input("please input the First Number:"))b=int(input("please input the Second Number:"))c=int(input("please input the Third Number:"))if((a>b) & (a>c)):print("The largest number is.
2022-03-13 11:32:33
641
原创 QuadraticEquation.py
import math # import math modulea=float(input("please input the coefficient of X^2:"))b=float(input("please input the coefficient of X:"))c=float(input("please input the constant:"))print("the equation you are solving is:""(",a,")x^2+(",b,")x+(",c,")")
2022-03-13 11:27:55
127
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人