Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
17
Task/Semiprime/XPL0/semiprime.xpl0
Normal file
17
Task/Semiprime/XPL0/semiprime.xpl0
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
func Semiprime(N); \Return 'true' if N is semiprime
|
||||
int N, F, C;
|
||||
[C:= 0; F:= 2;
|
||||
repeat if rem(N/F) = 0 then
|
||||
[C:= C+1;
|
||||
N:= N/F;
|
||||
]
|
||||
else F:= F+1;
|
||||
until F > N;
|
||||
return C = 2;
|
||||
];
|
||||
|
||||
int N;
|
||||
[for N:= 1 to 100 do
|
||||
if Semiprime(N) then
|
||||
[IntOut(0, N); ChOut(0, ^ )];
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue