Desenho de uma área triangular
#include <iostream>
#include <iomanip>
using namespace std;
void main() {
const int CENTER_COLUMN = 25, NUMBER_OF_ROWS = 10;
for(int row=0; row < NUMBER_OF_ROWS; ++row)
cout << setfill(' ') << setw(CENTER_COLUMN - row) << ' '
<< setfill('*') << setw(2 * row + 1) << '*' << endl;
}