math plz help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

math plz help

can someone help me how to do The operation 38%5 =

20th Jul 2016, 8:06 PM
Scorpion Fox
Scorpion Fox - avatar
9 Answers
+ 8
This is what I would do: var x = 38%5; document.write(x); The output should be 3 because 38 divided by five is seven, with a remainder of three. I hope this helps!
20th Jul 2016, 8:25 PM
Wikipedia
Wikipedia - avatar
+ 4
look this one of the way to do it .. you have 38 friends,right? you must locate them in 5 houses,but you also have to divided in equals for each house ..so 7 7 7 7 7.. you add them and you will get 35... there will be 3 friends without place to go ... it focus in whats left ... like 40%6= you will get 4... 6 people in 6 houses ..you have 4 people without house... sorry for my english ..i hope it helps
21st Jul 2016, 9:55 PM
Reinier Blanco (Reycuban)
Reinier Blanco (Reycuban) - avatar
+ 1
well thank u very much but i need to remeber the method
20th Jul 2016, 9:08 PM
Scorpion Fox
Scorpion Fox - avatar
+ 1
document.write(38%5);
21st Jul 2016, 6:14 AM
ZinC
ZinC - avatar
+ 1
Its the remainder when the first number is divided by the second. You can use long division to find what the answer would be.
22nd Jul 2016, 1:32 AM
Shelly
Shelly - avatar
0
38 divided by 5. reminder came 3. simple
30th Jul 2016, 9:43 PM
Hammad Hassan
Hammad Hassan - avatar
0
‹body› ‹script› Var x=38%5 Document.write(x) ‹/script› ‹/body›
3rd Aug 2016, 5:12 PM
md saif
md saif - avatar
0
see you have 2 methods to do this.... 1)var x=38%5; document.write(x); 2) document.write(38%5);
19th Aug 2016, 6:45 PM
Rohit Doshi
Rohit Doshi - avatar
0
when you divide 38 by 5 the remainder is 3.
12th Oct 2016, 5:58 AM
zhilan
zhilan - avatar