Posts by Edgar Oliveira • 93 points
2 posts
-
-5
votes7
answers15010
viewsA: Print "n" natural odd numbers
You can use the for cycle, which I like very much: printf("Digite o numero"); int k = scanf(&k); for(int x = 0; x < k; k++){ if(k%2 != 0){ printf("%i\n", k); } // end if } // end for…
pythonanswered Edgar Oliveira 93 -
0
votes0
answers208
viewsQ: Large repository does not allow git clone
I can a server with git (home made) "private" repositories. I’m having problems with one of the repositories. It turns out that this Repo has already reached the mark of 15GB on server. When I try…