Salut j'aimerai faire une petit programme permettant d'afficher les dix premiers entiers naturels impairs
j'ai fait ceci:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 #include<stdio.h> #include<conio.h> main(){ int i; for (i=1;i<20;i=i+2){ printf("d%",i); } getch(); }
Partager