add a comment to the sieve
Some checks failed
MVS Upload & Execute / upload-and-run (push) Failing after 5s

This commit is contained in:
Greg Gauthier 2025-10-19 14:05:24 +01:00
parent 075f5d6a02
commit 6587ca4f81

View File

@ -3,6 +3,7 @@
#define LIMIT 10000 #define LIMIT 10000
#define PRIMES 1000 #define PRIMES 1000
// Sieve of Eratosthenes
int main() int main()
{ {
int i,j,numbers[LIMIT]; int i,j,numbers[LIMIT];