Solid square of stars
Lección 5 de 30 del curso Bootcamp de patrones de estrellas de Coddy.
Desafío
FácilTu tarea es escribir un programa que imprima un cuadrado sólido de estrellas como se muestra a continuación. El patrón consiste en 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