author | Christian Urban <christian.urban@kcl.ac.uk> |
Tue, 19 Sep 2023 09:54:41 +0100 | |
changeset 920 | 7af2eea19646 |
parent 824 | 284ac979f289 |
permissions | -rw-r--r-- |
659 | 1 |
// Find all factors of a given input number |
824
284ac979f289
updated while tests
Christian Urban <christian.urban@kcl.ac.uk>
parents:
742
diff
changeset
|
2 |
|
659 | 3 |
|
658 | 4 |
write "Input n please"; |
5 |
read n; |
|
6 |
write "The factors of n are"; |
|
7 |
f := 2; |
|
824
284ac979f289
updated while tests
Christian Urban <christian.urban@kcl.ac.uk>
parents:
742
diff
changeset
|
8 |
while (f < n / 2 + 1) do { |
284ac979f289
updated while tests
Christian Urban <christian.urban@kcl.ac.uk>
parents:
742
diff
changeset
|
9 |
if ((n / f) * f == n) then { write(f) } else { skip }; |
284ac979f289
updated while tests
Christian Urban <christian.urban@kcl.ac.uk>
parents:
742
diff
changeset
|
10 |
f := f + 1 |
659 | 11 |
} |