Quick Test Professional.
this program is not dynamic
Now this is dynamic:Dim a,ba=cint(inputbox("Enter 1st digit"))b=cint(inputbox("Enter 2nd digit"))a = a+bb = a-ba = a-bMsgBox "a:"&aMsgBox "b:"& b
Post a Comment
2 comments:
this program is not dynamic
Now this is dynamic:
Dim a,b
a=cint(inputbox("Enter 1st digit"))
b=cint(inputbox("Enter 2nd digit"))
a = a+b
b = a-b
a = a-b
MsgBox "a:"&a
MsgBox "b:"& b
Post a Comment