Un triángulo con uno de sus ángulos de 90 ° se llama triángulo rectángulo. Ahora veremos cómo imprimir estrellas *, en forma de triángulo rectángulo, pero al revés en el eje x.
Algoritmo
El algoritmo debería verse así:
Step 1 - Take number of rows to be printed, n.
Step 2 - Make outer iteration I from N to 1 times to print rows
Step 3 - Make inner iteration for J to I
Step 3 - Print "*" (star)
Step 4 - Print NEWLINE character after each inner iteration
Step 5 - Return
Pseudocódigo
Podemos derivar un pseudocódigo para el algoritmo mencionado anteriormente, de la siguiente manera:
procedure topdownright_triangle
FOR I = N to 1 DO
FOR J = 1 to I DO
PRINT "*"
END FOR
PRINT NEWLINE
END FOR
end procedure
Implementación
La implementación del triángulo rectángulo en C es la siguiente:
#include <stdio.h>
int main() {
int n, i, j;
n = 5;
for(i = n; i >= 1; i--) {
for(j = 1; j <= i; j++)
printf("* ");
printf("\n");
}
return 0;
}
La salida debería verse así:
* * * * *
* * * *
* * *
* *
*