Upload files to "basic programming/1st task"
This commit is contained in:
14
basic programming/1st task/4.py
Normal file
14
basic programming/1st task/4.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# Q4
|
||||
|
||||
# Imports
|
||||
import math
|
||||
|
||||
# Get values from user
|
||||
side1 = float(input("Enter 1st side: "))
|
||||
side2 = float(input("Enter 2nd side: "))
|
||||
|
||||
# Calculate values
|
||||
side3 = math.sqrt((side1**2)+(side2**2))
|
||||
|
||||
# Print Values
|
||||
print(f"The Hypotenuse's length is {side3} units.")
|
||||
Reference in New Issue
Block a user