鄙人将这个程序稍微修改了一下:main() { int a,b; a=1,b=10; while(b>=0) { b-=a; a++; b=b-1; } printf("%d,%d\n",a,b); }还望大家不吝赐教.