目录
3、 题目:(分割数字) 编写一个程序,提示用户输入四位整数并以反向顺序显示
4、题目:(几何方面;三角形的面积) 编写一个程序,提示用户输入三角形的三个顶点(x1,y1),(x2,y2),(x3,y3) 然后显示它的面积。
5、 题目:(几何方面:正六边形的面积) 编写一个程序,提示用户输入正六边形的边长并显示它的面积。
1、题目:(科学:风寒温度)室外有多冷?只有温度值是不足以提供答案的。其他因素: 风速、相对温度和光照都对室外寒冷程度都有很大的影响。 编写一个程序,提示用户输入一个-58华氏度到41华氏度之间的温度和一个大于等 于每小时2里的风速,然后显示寒冷温度。
公式: t(wc)=35.74+0.6215*t(a)-35.75*(v**0.16)+0.4275*t(a)*(v**0.16)
执行目标: Enter the temperature in Fahrenheit between -58 and 41: 5.3 Enter the wind speed in miles per hour: 6 The wind chill index is -5.56707
代码:
ta = float(input("Enter the temperature in Fahrenheit:"))
v = float(input("Enter thee wind speed in miles per hour:"))
twc = 35.74+0.6215*ta-35.75*(v**0.16)+0.4275*ta*(v**0.16)
print("The wind chill index is %.5f" % twc)
执行结果: