“a += 5;这个算式就等价于a = a+5;将变量a和5相加之后再赋值给a."
a=3;
难道不是
a = a+5
a=3+5
a=8
这是为什么?
对的吧
这要看你用的什么语句,如果是do...while则必先循环一次,如果是while则可能不循环