Compare commits

...

2 Commits

Author SHA1 Message Date
SubhalakshmiK
5a48147582
Merge cdc209fda6 into c4f08d05b5 2024-06-14 11:31:14 +00:00
SubhalakshmiK
cdc209fda6 adding Depth_of_lake.py 2020-10-07 20:03:12 +05:30

6
Depth_of_lake.py Normal file
View File

@ -0,0 +1,6 @@
H = float(input("Enter the value of H : "))
L = float(input("Enter the value of L : "))
x = ((L*L) - (H*H)) / (2*H)
print("Depth of lake at A is : ", x)