How Does Modulus Divison Work

后端 未结 19 1920
栀梦
栀梦 2020-11-22 06:55

I don\'t really understand how modulus division works. I was calculating 27 % 16 and wound up with 11 and I don\'t understand why.

I can\'t

19条回答
  •  别那么骄傲
    2020-11-22 07:19

    This was the best approach for me for understanding modulus operator. I will just explain to you through examples.

    16 % 3
    

    When you division these two number, remainder is the result. This is the way how i do it.

    16 % 3 = 3 + 3 = 6; 6 + 3 = 9; 9 + 3 = 12; 12 + 3 = 15
    

    So what is left to 16 is 1

    16 % 3 = 1
    

    Here is one more example: 16 % 7 = 7 + 7 = 14 what is left to 16? Is 2 16 % 7 = 2

    One more: 24 % 6 = 6 + 6 = 12; 12 + 6 = 18; 18 + 6 = 24. So remainder is zero, 24 % 6 = 0

提交回复
热议问题