int m=5;
int n=7;
int x=(m*8/(n+2))%m;
谁给我详细解释下,这m到底何意
m是一个变量,值为5,%m 就是(m*8/(n+2))除以m的余数 %是取余运算符 也叫求模