Computer Science, asked by amanks9973, 3 months ago

Write a Visual Basic Program to enter three numbers and to find their product.​

Answers

Answered by pramodnagarcuraj17
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