/=是什么意思
/=是将该符号前的变量除以该符号后的数后得到的值再赋给该符号前的变量
例子:
int a = 10 int b = 5 a /= b //相当于a = a / b System.out.println(a); //2