2018年1月9日 星期二

Python: Calculate the hypotenuse of a right angled triangle

Python: Calculate the hypotenuse of a right angled triangle

Python Basic: Exercise-60 with Solution

Write a Python program to calculate the hypotenuse of a right angled triangle.
Sample Solution :-
from math import sqrt
print("Input lengths of shorter triangle sides:")
a = float(input("a: "))
b = float(input("b: "))
c =  round(sqrt(a**2 + b**2),2)
print("The length of the hypotenuse is", c )
========== RESTART: F:/Python_APSC/py-ex-basic-60.py ===========
Input lengths of shorter triangle sides:
a: 10
b: 10
The length of the hypotenuse is 14.14
>>> 

沒有留言:

張貼留言

MQTT WS HMI 與 Wokwi ESP32 連線的資訊透過HiveMQ

MQTT WS HMI 與 Wokwi ESP32 連線的資訊透過HiveMQ     https://console.hivemq.cloud/clusters 當您進入 HiveMQ Cloud Console 的 Clusters 頁面時,您的目標是取得能讓 MQTT W...