dwogsi Défaillance cérébrale... | Non rien.
Le code suivant affiche les entiers en colonne :
Code :
- int a=1,b=2,c=3,d=4,e=5,f=6,g=7,h=7,i=8;
- cout << setw(2) << a << setw(4) << b << setw(6) << c << endl;
- cout << setw(2) << d << setw(4) << e << setw(6) << f << endl;
- cout << setw(2) << g << setw(4) << h << setw(6) << i << endl;
|
A noter qu'il faut inclure iomanip. |