You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf("El numero mas repetido es el %d \n",valor_repetido);
return 0;
}
int moda (int a[10]){
int x,y,cont2=0,cont1=0,aux;
for (x=0;x<10;x++)
{
for (y=0;y<10;y++)
{
if(a[x]==a[y] && x!=y) //Aqui se van comparando los elementos es decir inicializa en 0 cogiendo el 2 y los compara con todos los elementos para ver cuantas veces se repite