Using break and continue in pseudocode language

How to use break and continue in pseudocode language. No examples have been given on using break and continue in pseudocode language.

Writing pseudocode for printing prime numbers in range 1 to N without using break and continue statements would be slightly difficult.

Please explain how to use break and continue in pseudocode language.

read n
iterate from i = { 2 to n } 
       if  i is prime 
               print i
       else 
              continue

simillarly use break with if