Well, this is the problem. I thought here and got a code. However, both the sum and the k
(which would be the prime number positions) are incorrect. Any thoughts on why?
#include <stdio.h>
#include <windows.h>
int main(void)
{
int k,i,j,d,v[101],soma,prim,f;
float med;
i=0;
while((i<101) && (j!=0) ){
i++;
printf ("Defina o valor do elemento %d => ", i);
scanf ("%d", &v[i]);
printf ("Para parar digite 0 => ");
scanf ("%d", &j);
}
k=0;
prim=1;
f=i;
soma=0;
while (f>2){ // verificação para ver se a posição do vetor(i) é um número primo
if (i%(f-1)==0){
prim = 0;
}
else{
k++;
soma=soma+v[f];
}
f=f-1;
}
med=soma/k;
printf("%d, %d, %d", k,soma,i); // só está servindo pra ver o que está dando errado no código
printf("A media e => %f \n", med);
system("pause");
}