摘要:
/* 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变量来确定拿珠子的次数 ... 阅读全文
摘要:
/* Note:Your choice is C IDE */ #include "stdio.h" void main() { int b,c,n,x; int a[100]; int i; printf("你想输入多少个数:"); scanf("%d",&n); for(i=0;ia[c]) { x=a[b]; a[b]=a[c]; a... 阅读全文
摘要:
/* Note:Your choice is C IDE */ #include "stdio.h" void main() { int a,b,c,d,sum=0; int n[]={10,20,40,24,45,53,32,54,23,7}; for(a=0;an[d]) { a=n[c]; n[c]=n[d]; ... 阅读全文