We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a176efc commit b2fc1ceCopy full SHA for b2fc1ce
AREA OF TRIANGLE.py
@@ -1,8 +1,8 @@
1
# Python Program to find the area of triangle
2
# calculates area of traingle in efficient way!!
3
-a = 5
4
-b = 6
5
-c = 7
+a = int(inpiut("Enter first no.")
+b = int(inpiut("Enter second no.")
+c = int(inpiut("Enter third no.")
6
7
# Uncomment below to take inputs from the user
8
# a = float(input('Enter first side: '))
0 commit comments