three /= one 為什么等于30
one = 10
two = 20
three = one + two //30
three /= one //three = three(30) / one(10 )
這個(gè)不應(yīng)該等于3嗎?
one = 10
two = 20
three = one + two //30
three /= one //three = three(30) / one(10 )
這個(gè)不應(yīng)該等于3嗎?
2020-04-13
舉報(bào)
2020-04-13
你這個(gè)代碼中three就是等于3,但是你參考的答案應(yīng)該是3-3,3-3里three/=one時(shí),three已經(jīng)是300了(經(jīng)過3-3里的一系列運(yùn)算),所以3-3里面答案是30.
2020-05-12
謝謝 本來還不懂看你這懂了