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
>>> 

沒有留言:

張貼留言

ASK 調變模擬器程式碼

ASK 調變模擬器程式碼 為什麼第二張圖要「放大 (Zoom)」? 1 kHz  的週期是 1000 us 。 如果不放大,第二張圖會因為波形太密而看起來像一塊實心的紅磚。 import tkinter as tk from tkinter import ttk import n...