以下do-while语句中循环体的执行次数是() a=10; b=0; do { b+=2; a-=2+b; } while (a>=0);
当a=1,b=2,c=3时,执行以下程序段后b=() if (a>c) b=a; a=c; c=b;