This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
microgentambly/examples/primes.mga

19 lines
185 B
Plaintext
Raw Normal View History

INT tot
INT n
INT j
INT te
2021-09-29 18:48:54 +02:00
IN INT tot numero massimo
SET n 1
:scn
2021-09-29 18:48:54 +02:00
SET j 1
OUT $n$\n
:sieve
MOD n j te
2021-09-29 18:48:54 +02:00
OUT j: $j$ \n
OUT te: $te$ \n
INC j
JME scn j n
JM sieve te 0
INC n
JLE scn n tot