#include main() { int i, j, n; cout << "n? "; cin >> n; for (i = 1; i <= n; i++) { if (i > 10) goto finished; for (j = n; j >= i; j--) cout << "* "; cout << endl; } finished: cout << "Finished!" << endl; return 0; }