Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*****************************************
- Do Not Forget To Like Our Page On Facebook
- Name : Langage C
- Link : http://www.facebook.com/MOBY.c00
- Enjoy !!
- ****************************************/
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int i,j,numero,tmp=0,conteur;
- printf("Entrez Un numero : ");
- scanf("%d",&numero);
- for(i=1;i<numero;i++)
- {
- for(j=i;j<numero;j++)
- {
- tmp+=j;
- if(tmp==numero)
- {
- printf("%d = ",numero);
- for(conteur=i;conteur<=j;conteur++)
- {
- if(conteur==j) {printf("%d\n",conteur); goto continuer;}
- printf("%d +",conteur);
- }
- }
- }
- continuer: tmp=0;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment