填空题

下列程序的运行结果是______。 main() { int a=1,b=10; do { b-=a;a++;}while(b--<0); printf("%d,%d\n",a,b); }

【参考答案】

B,H