int Tab[5][5];
for ( int i = 0 ; i < 5 ; i++ )
{
for ( int j = 0 ; j < 5; j++ )
{
if ( j <= i )
Tab[i][j] = i;
else
Tab[i][j] = j;
}
}
J'ai pas testé mais je pense que ca dervais marcher

________________________________________________________________________
Hardware is what we play with until it breaks, Software is what we play with until it works !
