watch does %? example. x%=6. Answer 3 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

watch does %? example. x%=6. Answer 3

7th Jul 2016, 6:30 AM
Jorge Eduardo Valdes Macias
Jorge Eduardo Valdes Macias - avatar
2 Answers
+ 4
The % stands for modulo. It's the remainder of a division. 6/4 does not work to get an interger, but 4/4 does. So 6-4 = 2 6%4 =2
7th Jul 2016, 6:45 AM
Andreas BeEm Kvist
Andreas BeEm Kvist - avatar
+ 4
% modulos gives the remainder of the division only. Andreas example is self-explaintry 5/5 = 1 6/5= 1 7/5= 1 because "/" only gives the integer output that is 1 while "%" gives just the remainder 5%5= 0 6%5= 1 7%5= 2
7th Jul 2016, 10:42 AM
Sanjay Gorka
Sanjay Gorka - avatar