摘要: #include <stdio.h>void main(){ int test[] = {1,2,3,4}; int x,y,z; for( x=0;x<4;x++){ for( y=0;y<4;y++){ for( z=0;z<4;z++){ if(test[x] != test[y] && test[x] !=test[z] && test[z] !=test[y]) printf("组成的数为:%d%d%d\n",test[x],test[y],test[z]); ... 阅读全文
posted @ 2012-10-03 19:58 ﹏Sakura 阅读(182) 评论(0) 推荐(0) 编辑