A number is a prime number if it's an integer greater than zero and it can not be divided exactly by other integers except 1 and itself.
So number 1, 2 and 3 are prime numbers.
Beyond number 3, If a number is not a prime number, it can be divided exactly by one of the integers between 2 and the square root of this number.This is the most efficient way to identify a prime number.
There's an example code in the HTML file attatched.
| Attachment | Size |
|---|---|
| PrintPrimeNumber.html | 1.71 KB |
1 is not a prime number
From http://en.wikipedia.org/wiki/Prime_number
"a prime number (or a prime) is a natural number that has exactly two (distinct) natural number divisors, which are 1 and the prime number itself."
and
"The first 30 prime numbers are 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, and 113"