结果为什么·是 3 6 0 0 0
#include<stdio.h>main()
{int i=1;
int b[5]={3};
while(i<5 && i%2!=0)
{b[i]=b[i-1]*2; i++;}
for(i=0;i<5;i++)
printf("%3d",b[i]);
}
2019-06-30 10:32

2019-06-30 11:38
2019-07-02 23:07
2019-07-06 14:54
2019-07-06 15:27