你觉会么?
九洲方除百尺冰,映秀又遭蛮牛耕。汽笛嘶鸣国旗半,哀伤尽处是重生。 -老K
治国就是治吏。礼义廉耻,国之四维。四维不张,国之不国。 -毛泽东
11选7,如果想37选7把C的值改成37就行了。
#include<iostream>
using std::cout;
using std::cin;
using std::endl;
const int C=11;
int main()
{
int n1=0,n2=0,n3=0,n4=0,n5=0,n6=0,n7=0,m=0;
for (n1=1;n1<=C-6;++n1)
for (n2=n1+1;n2<=C-5;++n2)
for(n3=n2+1;n3<=C-4; ++n3)
for(n4=n3+1;n4<=C-3; ++n4)
for(n5=n4+1;n5<=C-2; ++n5)
for(n6=n5+1;n6<=C-1; ++n6)
for(n7=n6+1;n7<=C; ++n7){
cout<<n1<<" "<<n2<<" "<<n3
<<" "<<n4<<" "<<n5
<<" "<<n6<<" "<<n7;
++m;
cout<<endl;
}
cout<<endl;
cout<<m<<endl;
}