Write a Visual Basic Program to enter three numbers and to find their product.
Answers
Answered by
7
Answer:
Private Sub Command1_Click()
Dim a, b, c As Integer
Dim d As Single
a = Val(Text1.Text)
b = Val(Text2.Text)
c = Val(Text3.Text)
d = (a * b * c)
Label4 = "Product of three numbers = " & d
End Sub
Similar questions