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 !!
- ****************************************/
- // NB: Exemple d execution en ligne ::
- // http://ideone.com/5qkNr7
- using System;
- public class HelloWorld {
- static public void Main() {
- int NombreEntree=45,Somme;
- for(int i=1;i<NombreEntree;i++){
- Somme=0;
- for(int j=i;j<NombreEntree;j++){
- Somme+=j;
- if(Somme==NombreEntree){
- Console.Write(NombreEntree+" = ");
- for(int k=i;k<=j;k++){
- if(k==j) {Console.Write(k+"\n"); break;}
- Console.Write(k+" + ");
- }
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment