python头歌实践教学平台-python第三章作业(初级)

python头歌实践教学平台-python第三章作业(初级)这是一份 Python 初级教学的实践作业集 包括判断直角三角形 计算平年闰年的天数 三角形面积 身高测算 个税计算器等十五个关卡 涵盖了基础的逻辑判断 数学计算及函数应用 适合初学者提升编程技能

大家好,欢迎来到IT知识分享网。

第1关 判断是否直角三角形

a=eval(input()) b=eval(input()) c=eval(input()) shortest=min(a,b,c) longest=max(a,b,c) middle=sum([a,b,c])-shortest-longest if shortest<=0 or shortest+middle<=longest: print('NO') elif shortest2+middle2==longest2: print('YES') else: print('NO')

第2关 今年多少天?

year=int(input()) if year%400==0 or year%4==0 and year%100!=0: print('366') else: print('365')

第3关 判断三角形并计算面积

a=float(input()) b=float(input()) c=float(input()) if a+b>c and a+c>b and b+c>a: s=(a+b+c)/2 area=(s*(s-a)*(s-b)*(s-c))0.50 print('YES') print(f'{area:.2f}') else: print('NO')

第4关 身高测算

father_h=int(input()) mother_h=int(input()) child=input() if child=="男": child_h=(father_h+mother_h)*1.08/2 print(int(child_h)) elif child=="女": child_h=((father_h*0.923)+mother_h)/2 print(int(child_h)) else: print(f'无对应公式')

第5关 个税计算器

n=eval(input()) x=0 if n<0: print("err

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/147834.html

(0)
上一篇 2025-04-04 17:26
下一篇 2025-04-04 17:33

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信