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

35 lines
438 B
Plaintext
Raw Normal View History

2021-10-02 15:56:23 +02:00
INT i
INT j
2021-10-02 15:56:23 +02:00
INT n
INT c
INT modr
IN INT n Enter the number till which you want prime numbers\n
OUT Prime numbers are:\n
SET i 2
:loopi
SET c 0
SET j 1
:loopj
MOD i j modr
JE increasec modr 0
:increasecback
2021-09-29 20:29:13 +02:00
INC j 1
2021-10-02 15:56:23 +02:00
JLE loopj j i
JE printn c 2
:printback
INC i 1
JLE loopi i n
2021-09-29 20:29:13 +02:00
END
2021-10-02 15:56:23 +02:00
:increasec
INC c 1
JMP increasecback
:printn
OUT $i$\n
JMP printback