0
How is this answer 2?
X = 3 Nums = 17 Y = ( nums % x)
2 Respuestas
+ 5
The modulo operator returns the remainder of a division. 17 / 3 is 5 with a remainder of 2, because 5 * 3 is 15 and 17 - 15 = 2
0
Modulo Sign gives remainder and // gives quotient