//TP 3 Partie 3 Bougheloum Loubna #include #include using namespace std; int main ( ) { list LST; for(int i=0; i<10; i++) { LST.push_back(3*(i+1)); } LST.resize(15); LST.push_back(0); for(list::iterator it=LST.begin(); it!=LST.end(); it++) { cout<<' '<<*it; cout<<'\n'; } cout<<"le premier element est : "<