Skip to main content

কীভাবে Prime Numbers গণনা করবেন

Prime Numbers কি?

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).

ধাপে ধাপে নির্দেশিকা

  1. 1Check if the number is greater than 1
  2. 2Try dividing by every integer from 2 up to √n
  3. 3If none divide evenly, the number is prime
  4. 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

সেটিংস