esercizio in c progetto eulero

claudiolaric

Nuovo Utente
12 Mag 2017
3
0
1
36
Non stampa niente.il programma se ne va in loop(per numeri piccoli funziona).Secondo voi esiste un algoritmo migliore?
The sequence of triangle numbers is generated by adding the natural numbers. So the 7th triangle number would be 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28. The first ten terms would be:

1, 3, 6, 10, 15, 21, 28, 36, 45, 55, ...

Let us list the factors of the first seven triangle numbers:

1: 1
3: 1,3
6: 1,2,3,6
10: 1,2,5,10
15: 1,3,5,15
21: 1,3,7,21
28: 1,2,4,7,14,28

We can see that 28 is the first triangle number to have over five divisors.

What is the value of the first triangle number to have over five hundred divisors?

#include <stdio.h>
#include <stdlib.h>

int main()
{
int i=1;
int j;
int sum=0;
int numero=0;
for(j=2;;j++){
sum=i+j;
i=sum ;
numero =trovadivisori(sum);
if(numero>500) {
printf("%d\n",sum);
break;
}

}

return 0;
}
int trovadivisori(int n){
int i;
int k=0;

for(i=0;i<n;i++){

if(n%(i+1)==0){
k++;
}
}

return k;

}
 

Discussioni simili