问题详情
以下程序的输出结果是()。
#include
main()
int i=0,a=0;
while(i<20)
for(;;)
if((i%10)==0)break;
else i--;
i+=11;a+=I;
printf("%d ",a);
A.21
B.32
C.33
D.11