大家好,欢迎来到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