摘要:
/* Note:Your choice is C IDE */ #include "stdio.h" void main() { int i,j; int n[10][10]={1}; //初始化数组 //用外循环控制二维数组的行 for(j=0;j<10;j++) { //用内循环控制二维数组的列 阅读全文
摘要:
/* Note:Your choice is C IDE */ #include "stdio.h" void main() { int box[4]={8,5,3,2}; int max; //最大盒子编号数 int insert;//最多珠子盒子编号 int i,j; //用作循环的变量 //用j变量来确定拿珠子的次数 ... 阅读全文