10001th prime

From Rosetta Code
Revision as of 18:49, 16 November 2021 by CalmoSoft (talk | contribs) (Created page with "{{Draft task}} ;Task: <br>Find and show on this page 10001th prime <br><br> =={{header|Ring}}== <lang ring> load "stdlib.ring" see "working..." + nl num = 0 pr = 0 limit = 1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
10001th prime is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.
Task


Find and show on this page 10001th prime

Ring

<lang ring> load "stdlib.ring" see "working..." + nl num = 0 pr = 0 limit = 10001

while true

     num++
     if isprime(num)
        pr++
        //see "" + num + " "
     ok
     if pr = limit
        exit
     ok

end

see "" + num + nl see "done..." + nl </lang>

Output:
working...
The 10001th prime is: 104743
done...