2 réponses
lami20j
Messages postés
21331
Date d'inscription
jeudi 4 novembre 2004
Statut
Modérateur, Contributeur sécurité
Dernière intervention
30 octobre 2019
3 569
29 nov. 2006 à 20:25
29 nov. 2006 à 20:25
Salut,
/* etoile.c */ #include<stdio.h> int main() { int ligne=1,i; while ( ligne < 5 ) { for(i=0;i < ligne;i++) printf("*"); printf("\n"); ligne++; } return 0; }lami20j