Langage c
Fermé
phil
-
7 nov. 2004 à 20:10
Goodzilla Messages postés 16 Date d'inscription jeudi 13 mars 2003 Statut Membre Dernière intervention 30 juillet 2008 - 7 nov. 2004 à 20:25
Goodzilla Messages postés 16 Date d'inscription jeudi 13 mars 2003 Statut Membre Dernière intervention 30 juillet 2008 - 7 nov. 2004 à 20:25
A voir également:
- Langage c
- Langage ascii - Guide
- Langage binaire - Guide
- Pascal langage - Télécharger - Édition & Programmation
- Langage pascal - Télécharger - Édition & Programmation
- Dev-Pascal - Télécharger - Édition & Programmation
2 réponses
Goodzilla
Messages postés
16
Date d'inscription
jeudi 13 mars 2003
Statut
Membre
Dernière intervention
30 juillet 2008
3
7 nov. 2004 à 20:25
7 nov. 2004 à 20:25
#include<stdio.h>
#include<conio.h>
void main(){
int nbrligne=5;/* tu fait scanf("%d",&nbrligne); si tu veux que la valeur soit saisi par le clavier
clrscr();
for(int ligne=1;ligne<nbrligne;ligne++)
{
for(int j=0;j<ligne;j++)
printf("*");
printf("\n");
}
}
Goodzilla est always here
#include<conio.h>
void main(){
int nbrligne=5;/* tu fait scanf("%d",&nbrligne); si tu veux que la valeur soit saisi par le clavier
clrscr();
for(int ligne=1;ligne<nbrligne;ligne++)
{
for(int j=0;j<ligne;j++)
printf("*");
printf("\n");
}
}
Goodzilla est always here