GitMory / Code_Block_V1

1 stars 0 forks source link

Ejercicio 1 para PC (14/05) #2

Open GitMory opened 6 months ago

GitMory commented 6 months ago

include

using namespace std;

int main() { int n; cout << "Ingresa un número n: "; cin >> n;

if (n < 1 || n > 26) {
    cout << "Ingrese un numero valido" << endl;
    return 1;
}

char letra = 'A';
for (int i = 0; i <= n; i++) {
    for(int k = i; k>0; k--){
        cout << " ";
    }
    for(int j = n-i; j>0; j--){
        cout << "C";
    }
    cout << letra <<endl;
    letra++;
}

cout << endl;

return 0;

}