// 8.4.26aExercise.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; int main() { int base = 0; cout << "Input the size of the base of the triange: "; cin >> base; for ( int i = base; i > 0; i--) { for (int j = 0; j < i; j++) { cout << "*"; } cout << endl; } }