Explain me floor division and modulo PLEASE ..... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Explain me floor division and modulo PLEASE .....

A friend in need !!!!!! HELP ME

24th Dec 2017, 3:28 PM
Arya
1 Answer
+ 3
The result of a modulo division is the remainder of an integer division of the given numbers. That means: 27 / 16 = 1, remainder 11 => 27 mod 16 = 11 Other examples: 30 / 3 = 10, remainder 0 => 30 mod 3 = 0 35 / 3 = 11, remainder 2 => 35 mod 3 = 2 floor division Also referred to as integer division. The resultant value is a whole integer, though the result’s type is not necessarily int. 30//3=10 and 5//2=2 https://www.sololearn.com/discuss/85324/?ref=app https://www.sololearn.com/discuss/299745/?ref=app https://www.sololearn.com/discuss/378155/?ref=app
24th Dec 2017, 5:29 PM
GAWEN STEASY
GAWEN STEASY - avatar