added place for mersenne solution in eratostenes, renaming zad1→zad1i2

This commit is contained in:
Michał Krzysztof Feiler 2019-01-23 19:22:57 +01:00
parent 383645da81
commit af8beab822
No known key found for this signature in database
GPG Key ID: E35C2D7C2C6AC724
3 changed files with 11 additions and 1 deletions

View File

@ -43,7 +43,7 @@ void doSE()
#define FILL_CHAR '-'
int main()
void do_and_print_eratostenes()
{
doSE();
int i;
@ -66,5 +66,15 @@ int main()
}
}
putchar('\n');
}
void do_and_print_mersenne()
{
}
int main()
{
do_and_print_eratostenes();
do_and_print_mersenne();
return 0;
}