Wednesday, January 27, 2010

program-9

PROGRAM TO FINDOUT PRIME NUMBER
i=inputbox("enter starting value " )
j=inputbox ("enter end value" )
For n=i to j
If n mod 2<>0 Then
print(n)
End If

No comments:

Post a Comment