O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
import math a=int(input("Enter side 1 of triangle : ")) b=int(input("Enter side 2 of triangle : ")) c=int(input("Enter side 3 of triangle : ")) s=(a+b+c)/2 area=s*math.sqrt((s-a)*(s-b)*(s-c)) print("Area of Triangle is : ",area)
▶ Run Code
🖥 Output: