– Prog048 /* Prog048.cpp */ /************************************************* Programa: Triángulo. Este programa imprime el borde de un triángulo usando asteriscos. *************************************************/ #include <stdio.h> void main() { const int n=7; /* Altura del triángulo */ int j,k; /* Contadores */ for (k=1;k<=n-1;k++) printf(» …

Dibujando con C Acceder »