Testing tricks is a blog related to software testing.
(Anyone who is interested to write articles or want to share their experience regarding Software Testing are Welcome.)
shinde.of.santosh@gmail.com
Wednesday, July 13, 2011
code to find multiple of 7 using vb script
Option Explicit
Dim num
num=Inputbox("Enter a number")
If num mod 7=0 Then
Msgbox "The given number is a multiple of 7"
Else
Msgbox "The given number is not a multiple of 7"
End If
0 comments:
Post a Comment