Langage c dessiné un triangle
Résolu/Fermé
badreflow
Messages postés
54
Date d'inscription
vendredi 13 juin 2008
Statut
Membre
Dernière intervention
17 octobre 2019
-
13 juin 2008 à 01:07
dream - 9 oct. 2015 à 01:19
dream - 9 oct. 2015 à 01:19
A voir également:
- Triangle en c
- Dessiner en langage c - Meilleures réponses
- Triangle rectangle langage c - Meilleures réponses
- Triangle attention word ✓ - Forum Word
- Parenthèse triangle - Forum Logiciels
- Triangle clavier - Forum Windows
- Samsung triangle rouge thermomètre ✓ - Forum Téléphones & tablettes Android
- Périphérique pci triangle jaune - Forum Pilotes (drivers)
13 réponses
badreflow
Messages postés
54
Date d'inscription
vendredi 13 juin 2008
Statut
Membre
Dernière intervention
17 octobre 2019
40
13 juin 2008 à 01:34
13 juin 2008 à 01:34
pardent mais ca marche pas je crois q il y a probléme avec ; getch ()
j ai trouver la solution
#include <stdio.h>
int main ()
{int y,j,i,p ;
for(p=0;p<y;p++)
{printf ("\ncombien de ligne ? \n");
scanf ("%d",&y);
for(i=0;i<y;i++)
{printf ("\n");
{for(j=0;j<=i;j++)
{printf ("*");
}
}
}}}
j ai trouver la solution
#include <stdio.h>
int main ()
{int y,j,i,p ;
for(p=0;p<y;p++)
{printf ("\ncombien de ligne ? \n");
scanf ("%d",&y);
for(i=0;i<y;i++)
{printf ("\n");
{for(j=0;j<=i;j++)
{printf ("*");
}
}
}}}
25 nov. 2008 à 14:02
#include <conio.h>
main ()
{
int N,i,j ;
printf ("Donnez l'hauteur N =");
scanf ("%d",&N);
for (i=0;i<N;i++){
for (j=0;j<=N-(i+1);j++)printf (" ");
for (j=0;j<2*i+1;j++)printf ("*");
for (j=0;j<=N-(i+1);j++)printf (" ");
printf ("\n");
}
getch();
return 0;
}
14 mai 2011 à 01:25
#include<stdlib.h>
main()
{
int i,j,n;
printf("donnez un nombre");
scanf("%d", &n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
printf("*");
printf("\n");
}
system("pause");
}