DEV Community

Keerthiga P
Keerthiga P

Posted on

Divisor and Prime Number Programs

1.Prime Number
A Prime Number is a number that has only two factors 1 and itself.
Flow Chart:

Python:

JavaScript:

Java:

2.Divisor:
A Divisor is a number that divides another number exactly (remainder = 0).

Example:
20 → divisors are:
1, 2, 4, 5, 10, 20

Flow Chart:

JavaScript:

Python:

Java:

3.Count Divisor:

Count how many numbers divide the given number exactly.
Enter fullscreen mode Exit fullscreen mode

Example:
20 → divisors: 1, 2, 4, 5, 10, 20
Count = 6

Flow Chart:

JavaScript:

Python:

Java:

Top comments (0)