取模%取得是余数,取余/取得是商。


int c=9%6;
int d=9/6;
Log.e("1", "run:--------->c "+ c);
Log.e("1", "run:--------->d "+ d);

c 3 ;d 1