摘要: #include <stdio.h>#include <cstdlib>int eight_array[8] = {0};int count = 0;void printf_image(){ printf("\n 第 %d 种方案 \n",++count); for(int i = 0; i < 8; ++i) { int j; for(j = 0; j < eight_array[i]; ++j) { printf("%d ", 0); } printf("%d ", 1); for(in... 阅读全文
posted @ 2012-04-26 13:32 ITMelody 阅读(337) 评论(0) 推荐(0)