remove logs messages

This commit is contained in:
2019-12-04 00:35:59 +01:00
parent 2483a50cef
commit c670eeb71a
@@ -6,14 +6,12 @@ int main() {
int k=2; int k=2;
// go until sqrt(n) // go until sqrt(n)
while (k <= sqrt(n)) { while (k <= sqrt(n)) {
printf("searching for dividers for %d, checking %d\n", n, k);
// k is factor of n // k is factor of n
if (n % k == 0) { if (n % k == 0) {
// print out the factor k // print out the factor k
print(k); print(k);
// reset n to the quotient // reset n to the quotient
n = n / k; n = n / k;
printf("found %d, setting n=%d\n", k, n);
// restart at k=2 // restart at k=2
k = 2; k = 2;
} else { } else {