Inverted Pyramid
Leçon 12 sur 30 du cours Bootcamp : Motifs d'étoiles de Coddy.
Défi
FacileÉcrivez un programme qui affiche un Inverted Pyramid Pattern d'étoiles comme illustré ci-dessous. Le motif se compose de 6 lignes et 11 colonnes.
Output Pattern:
* * * * * * * * * * *
* * * * * * * * *
* * * * * * *
* * * * *
* * *
* Essayez vous-même
#include <stdio.h>
int main() {
// Écrivez votre code ici
return 0;
};Toutes les leçons de Bootcamp : Motifs d'étoiles
3Intermediate Level Pattern's
Pyramid of starsInverted PyramidDiamond PatternRight Direction ArrowLeft Direction ArrowPlus PatternX Pattern