i++和i += 1有区别吗?在后面的练习中用第二个显示错误
i++是将i赋值后再加1,i+=1是将i加1;
example
i=1;
printf("%d",i++); i=1
printf("%d",i+1); i=2