Feed Headline Animator

WAP to multiply the two integers

Private Sub Command1_Click()
Dim a, b, c As Integer
a = InputBox("Enter 1st value", "input box")
b = InputBox("Enter 2nd value", "input box")
c = a * b
MsgBox a & "*" & b & "=" & c, -0, "Multiplication"
End Sub


Posted by: Wasim Javed

No comments:

Post a Comment