/* bottum up*/ #include /* declaration variables globales****/ int A[100][100]; int V[100]; /***function renvoie le minimum****/ int min (int a, int b) { if (a>b) return b; else return a;} /***function renvoie vrai si nombre premier****/ bool premier(int n){ int i=2; while ((n % i != 0) and (i <= n/2)) i++; if (i > n/2) return true; else return false;} /**** function recherche ****/ int recherche (int Mat[100][100], int c, int n) {int i,min; min=Mat[0][c]; for(i=1;i