首页
编程
java
php
前端
首页
编程
java
php
前端
(i++)+(--i)
t=1,i=5,求t*=(i++)+(--i),t的值
t*=(i++)+(--i)
等价于
--i;
t=t*(i+i);
i++;
点击展开全文