填空题

下面程序的输出结果是______。 main() {int i=0,a=0; while(i<20) { for(;;) { if((i%10)==0)break; else i--;} i+=11; a+=i; } printf("%d\n",a); }

【参考答案】

32