#include <stdio.h>

void afficheTab(int tailleT, int t[]){
  int i;

  for(i=0;i<tailleT;i++){
    printf("| %d ",t[i]);
  }
  printf("|\n ");
  system("pause");

}

