Javascirpt Programing

write a html page with javascript to check a number is prime or not.

View Answers

November 22, 2010 at 3:56 PM

Hi Friend,

Try the following code:

<script type="text/javascript">
function check(){
            var num=document.getElementById('num').value;
            var i=2;
            var b;
            var status = true;
        while(i<num)
            {
                b=num%i;
                if(b==0)
                {
                    status = false;
                    break;
                }
                i++;
            }


            if (status)
            {
                alert("Your number is a prime number");
            }
            else
            {
                alert("Your number is not a prime number");
            }
            }
    </script>
    Enter Number to Check:<input type="text" id="num"><input type="button" value="Check" onclick="check();">

Thanks









Related Tutorials/Questions & Answers:
Javascirpt Programing
Javascirpt Programing  write a html page with javascript to check a number is prime or not.   Hi Friend, Try the following code:ADS_TO_REPLACE_1 <script type="text/javascript"> function check(){ var
Java programing
Java programing   need help wrting this Write a program that has an array of 5 Strings, and determines which ones are palindromes (letter-case does not matter). thanks
Advertisements
socket programing in servlet
socket programing in servlet  give me a example to write socket programing in servlet
programing question
programing question  how do i use loops(for,while) to add components in java   Hi Friend, The below code might help you.ADS_TO_REPLACE_1 import java.awt.*; import javax.swing.*; class TextFieldArray extends JFrame
Programing Help - Java Beginners
Programing Help  how to design a filebrowser in java "witout using Swing
SOCKET PROGRAMING IN THE JAVA FOR NETWORKING CONCEPT
SOCKET PROGRAMING IN THE JAVA FOR NETWORKING CONCEPT  I WANT TO KNOW ABOUT THE JAVA SOCKET PROGRAMING FROM BASIC LEVEL AND HOW CAN I WORK ON IT I KNOW THE JAVA PROGRAMING.SO PLEASE HELP ME HOW CAN I DO SOCKET PROGRAMING
cnc programing course
cnc programing course  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: cnc programing... the topic "cnc programing course". Also tell me which is the good
Java programing help
Java programing help  Can you help me create this program? Write a console program that repeatedly prompts the user to enter data until they type done (any case, Upper, Lower, or Mixed). As they enter the data, assign
javascript programing error - JSP-Servlet
javascript programing error  hi deepak i m using explorer to run javascript program in this there is no option to check error will u plz tell me the way to check error in explorer as we can check with mozila
java programing problem - Java Beginners
java programing problem  Create a class named Movie that can be used with your video rental business. The Movie class should track the Motion picture Association of America rating , ID Number, and movie title with appropriate
cnc programing classes near me
cnc programing classes near me  Hi, I am beginner in Data Science... programing classes near me Try to provide me good examples or tutorials links so that I can learn the topic "cnc programing classes near me". Also tell
guys,, need help,, in java programing,, arrays
guys,, need help,, in java programing,, arrays  create a program where you will input 10 numbers and arrange it in ascending way using arrays
Threading in Java
Threading in Java         Overview of Thread Threading concept is very important in Java Programing language. A thread is a sequential path