+ 1
What is the difference between integer division and modulus division in c++
C++ Programming
2 Réponses
+ 6
Integer division returns the quotient portion of a value, and modulus division returns the remainder.
+ 3
interger returns how many times the value can be devided by the next number like 25/5 = 5. Modulus returns what is left like 25%4 = 1.