+ 5
What is the quickest algorithm to find prime numbers?
3 Answers
+ 8
download files with prime numbers.
It is not a real algorithm but i sometimes use that cheat.
+ 3
Step 1: Input N & M
Step 2: While (N < M)
I=2
Step 4: While (I<N)
Step 5: IF N%I == 0
goto Step 7
Step 6: I++
Step 7: IF I==NUM
Print NUM
Step 8: N++
+ 1
đđđ