Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Could Anybody tell me VBScript for
Check if a given number is Prime number-Don't use any Built-
in Functions Boolean/int is Prime(int number).. Thanks in
advance.

Answer Posted / mudaseer

vnum=inputbox("enter the number")
for i=2 to vnum-1
if(vnum mod i)=0 then
vf="no"
exit for
else vf="yes"
end if
next
if vf="no" then
msgbox "not a prime"
else
msgbox "it is a prime"
end if

Is This Answer Correct ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Give me sm ideas to write Vbscripts abt protocol testing abilash700@gmail.com.

2133


What is the use of the date function in the vbscript language?

1092


Mention how to assign a date value to a variable?

1140


Does VB/Win make standalone .EXE files?

3448


Which function is used to perform string comparison?

1185


what is the differance between BYVAL,BYREF?

2323


Program to use input box and send even numbers into sheet1 and odd numbers into sheet2 and prime numbers into sheet3 using vbscript(QTP)?

3091


What is purpose of scripting.filesystemobject class in vbscript?

1174


What's the difference between vbscript and vb.net?

1167


how does vb script help in web page designing? explain with example.

2040


Hi this is Vinoth. I need a help on below mentioned question A combobox contains list of items assume as 5 I have to get each items Individually and I have to Export to datatable. Please help me on this. Thanks

2171


Which operator is used to concatenate the 2 values in the vbscript language?

1045


Explain about the functionality of vb script?

1032


How to Enter Values on the Command promt using VB script

2099


Which operator is used for fetching the modulus of the 2 numbers in the vbscript language?

1069