/// modulo (%) example

#include <iostream>
#include <cmath>

using namespace std;

int main()
{

    int i = 11;
    int j = 3;
    int modulo;

    modulo = i % j;   /// gives remainder of division
    // 11/3 = 3 remainder 2
    return modulo;    /// results in return value of 2

} /// end main
