变量值除以表达式值,并将余数赋给变量。
result %= expression
使用 %= 运算符与使用下面的语句是等效的:
result = result % expression
版本 1
% 运算符 | 运算符优先级 | 运算符总结