首页上一页 1 下一页尾页 1 条记录 1/1页
实战2.7中的实战三:根据父母身高预测儿子身高问题咨询
发表在Python图书答疑
2019-10-11 悬赏:2 学分
《零基础学Python》第2章 Python语言基础
是否精华
是
否
版块置顶:
是
否
father=float(input('请输入父亲的身高:')) mather=float(input('请输入母亲的身高:')) yuce=(father+mather)*0.54 print('预测儿子的身高为:' +str(yuce))#自己写的 father = None mother = None print('请输入父亲的身高:') father = input() # 获取控制台输入的父亲身高 print('请输入母亲身高:') mother = input() # 获取控制台输入的母亲身高 # 通过计算公式打印儿子身高 print('预测儿子身高为:',(float(father) + float(mother))*0.54) #源代码
请问下,自己写的与源代码相比,有什么错呢?运行结果是一样的