Presta atención porque en este post vas a hallar el arreglo que buscas.
Ejemplo: función totient de euler c++
// C program to calculate Euler's Totient Function #include intphi(int n)int result = n;// Initialize result as n // Consider all prime factors of n and subtract their // multiples from result for(int p =2; p * p <= n;++p)// Check if p is a prime factor. if(n % p ==0)// If yes, then update n and result while(n % p ==0)
n /= p;
result -= result / p;// If n has a prime factor greater than sqrt(n) // (There can be at-most one such prime factor) if(n >1)
result -= result / n;return result;// Driver program to test above function intmain()int n;for(n =1; n <=10; n++)printf("phi(%d) = %dn", n,phi(n));return0;
Acuérdate de que puedes agregar una reseña si descubriste tu dificultad en el momento oportuno.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)