Rhombus Pattern
Lección 10 de 30 del curso Bootcamp de patrones de estrellas de Coddy.
Desafío
FácilEscribe un programa que imprima un Patrón de Rombo de estrellas como se muestra a continuación. El patrón consta de 6 filas y 6 columnas.
Patrón de Salida:
* * * * * *
* * * * * *
* * * * * *
* * * * * *
* * * * * *
* * * * * * Pruébalo tú mismo
#include <stdio.h>
int main() {
// Escribe el código aquí
return 0;
};Todas las lecciones de Bootcamp de patrones de estrellas
2Beginner Level Pattern's
Row of starsColumn of starsSolid square of starsRight-angle triangleLeft-angle triangleInverted right-angle triangleInverted left-angle triangleRhombus Pattern3Intermediate Level Pattern's
Pyramid of starsInverted PyramidDiamond PatternRight Direction ArrowLeft Direction ArrowPlus PatternX Pattern