0
1. 25%0. 5
explan please
5 Réponses
+ 2
What answer does it give you?
+ 1
it will probably give you the remainder after division. as in c language it is remembered as modulo operator in arithematic operator. may be i am wrong.
+ 1
If the decimals are weird, you can multiply everything by 100, calculate...then divide the 100 back out of the remainder and reduce:
1.25*100=125
0.5*100=50
125 % 50 = 25
25/100 = 1/4 = 0.25
You already have your answer so this is just a way to conceptualize (it works because all the digits are related to 10).
0
I am understand
1. 25%0. 5=2. 5
0. 5 is multiplied by 0. 5 get 0. 25
thanking you
0
It's simple.
1.25 % 0.50 is 0.25 because 1.25 / 0.50 == 2 with the 0.25 with the rest
Modulo operator(%) returns the rest of the division.