num/=10 请问大神这是什么意思?
还有很多这样的例子num+=10就是num=num+10同理,加减乘除都一样
num=num/10;
num /= 10; 等价于 num = num / 10;
num = num/10
num=num/10