+ 2
What`s meaning of % in c#?
4 Respuestas
+ 7
Remainder operator: it outputs the remainder of integer division of two numbers. So, for example, 11 % 4 is 3, since 11 divided 4 gives two, with remainder of 3
0
Thanks
0
Remainder
- 2
Write an example