Mathematical operations

There are 5 operations which is supported by C++, which is :

+, -, *, /, %

For you who don't know what modulo (%) is, it is leftovers from division, example :
5 % 2 is 1.
10 % 5 is 0.

Komentar