如何计算Prime Numbers
learn.whatIsHeading
A prime number is a whole number greater than 1 that has exactly two factors: 1 and itself. Primes are the "atoms" of arithmetic — every integer greater than 1 can be written as a unique product of primes (fundamental theorem of arithmetic).
分步指南
- 1Check if the number is greater than 1
- 2Try dividing by every integer from 2 up to √n
- 3If none divide evenly, the number is prime
- 4If any divide evenly, it is composite (not prime)
例题解析
输入
17
结果
Prime
Not divisible by 2, 3
输入
51
结果
Composite
51 = 3 × 17
输入
97
结果
Prime
Not divisible by 2,3,5,7