- Home
·
- Math/Dates
·
- Area of a Triangle using the semi-perimeter method
Area of a Triangle using the semi-perimeter method
Area of a Triangle using the semi-perimeter method
Rate Area of a Triangle using the semi-perimeter method
(2(2 Vote))
a = Val(side1.Text)
b = Val(side2.Text)
c = Val(side3.Text)
x = a + b + c
s = x / 2
smi.Text = Str$(s)
ar = s * z * m
area = ar ^ (0.5)
area.Text = Str$(area)
End Sub
Private Sub Option1_Click()
s1 = "1st Side"
s2 = "2nd Side"
s3 = "3rd Side"
s = "Semi - preimeter"
a = "Area"
Label1.Caption = s1
Label2.Caption = s2
Label3.Caption = s3
Label4.Caption = s
Label5.Caption = a
End Sub
Area of a Triangle using the semi-perimeter method Comments
No comments yet — be the first to post one!
Post a Comment