#include "Tableau.h" #include #include #include #include #include using namespace std; // Constructeur Tableau::Tableau() { } Tableau::Tableau(GtkWidget &da) { m_da = &da; m_length = 10; m_max = 10; m_tab = new int[10]; } /* void Tableau::displayTab() { } */ void Tableau::randomFill() { srand ( time(NULL) ); for(int i=0; i= 0 && j >= 0 && i0; i--) { for(int j=0; ji) { cout << "[] "; } else { cout << " "; } } cout << "\n"; } for(int i=0; i