main(){int i , j , m , n ;i=8; j=10;i-=1; j+=2;m=++i; m=j++;printf("%d,%d,%d,%d\n" ,i,j,m,n);printf("%d,%d\n" ,i++,++j)}
倒数第二行少个分号:
分号没加,题目是什么