0
3.6kviews
Write an algorithm to check given integer number is Prime number or not.

Subject : Structured Programming Approach

Title : Introduction to Computer, Algorithm and Flowchart

Marks : 4M

1 Answer
0
597views

Start

Read any integer number

If the integer divisible 2 up to the number -1 then

given number is not prime else

given is prime

End.

Please log in to add an answer.