以下程序运行后的输出结果是?为什么?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)}