0
Why <?php $num=14; $num1=3; echo $num%$num1 ?> Is 2 ?
helpme please
3 Respuestas
+ 2
because 2 is the rest
when you divide integers 14/3 result is 4
3*4=12 and 2 is the missing value to get 14
12%3=0
13%3=1
14%3=2
15%3=0 (15/3=5)
16%3=1
...
0
thanks :D
0
Thanks (Y).