#include<stdio.h>main(){ int x=10,y=10,i; for(i=0;x>8 ;y=++i) printf("%d %d ",x--,y);}为啥输出 10 10 9 1 呢?