Finding Square Root of A Number Square Root of 4 Is 2, Square Root of 9 Is 3, Square Root of 16 Is 4
Finding Square Root of A Number Square Root of 4 Is 2, Square Root of 9 Is 3, Square Root of 16 Is 4
procedure square_root( n )
end procedure
Following is the algorithm to find all the prime numbers less than or equal to a given integer n by
Eratosthenes’ method:
According to the algorithm we will mark all the numbers which are divisible by 2 and are
greater than or equal to the square of it.
Now we move to our next unmarked number 3 and mark all the numbers which are
multiples of 3 and are greater than or equal to the square of it.
We move to our next unmarked number 5 and mark all multiples of 5 and are greater than
or equal to the square of it.
We continue this process and our final table will look like below:
So the prime numbers are the unmarked ones: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43,
47.
To find the maximum value, you initialize a placeholder called max with the value of the first
element in the array. Then you go through the array element by element. If any element is greater
than max you replace max with that element. Here is the pseudocode: