1到35之间的7个数相加能等于100的算法能有几个 那7个数不能重复 ;

1到35之间的7个数相加能等于100的算法能有几个  那7个数不能重复 ;

 

 

(2009-05-22 00:20:29)   ┣ Fierce ┫
for(int i1=1;i1<=35-6;i1++){
   for(int i2=i1+1;i2<=35-5;i2++){
    for(int i3=i2+1;i3<=35-4;i3++){
     for(int i4=i3+1;i4<=35-3;i4++){
      for(int i5=i4+1;i5<=35-2;i5++){
       for(int i6=i5+1;i6<=35-1;i6++){
        for(int i7=i6+1;i7<=35;i7++){
         if(i1+i2+i3+i4+i5+i6+i7==100){
          System.out.println(i1+" "+i2+" "+i3+" "+i4+" "+i5+" "+i6+" "+i7+" ");
         }
        }
       }
      }
     }
    }
   }
  }
 

有更好的方法吗?

请看完贴的你。帮帮

你可能感兴趣的:(算法,F#)