Código C:
Ver original//IMPLEMENTACIÓN DE UN ALGORITMO GENÉTICO
#include <stdio.h>
#include <stdlib.h> //incluye srand() y rand()
#include <conio.h>
#include <time.h> //incluye time()
main()
{
FILE *fin,*fout;
int tm, tg, gen, g=0;
float pmut;
int i, j;
int mat[500][50], P_I;
int cont;
fout
=fopen("ag.out","w");
if(fin==NULL){
}
cont=0;
for(i=0;i<tm;i++){
printf("Individuo %d: ", (i
+1)); for (j=0;j<tg;j++){
P_I=mat[i][j];
if(mat[tm][tg]==1){
cont++;
}
}
}
fprintf(fout
, "Parámetros: %d %d %.1f %d\n", tm
, tg
, pmut
, gen
);
}
Pero no me funciona, me dice en el: printf("%d", cont) ... = 0 en todo, a que te refieres con agregar ese if.