The modulus operator. : modulus operator « Operators statements « C++ Tutorial






#include <iostream> 
using namespace std; 
 
int main() 
{ 
  int x, y; 
 
  x = 10; 
  y = 3; 
  cout << x << " / " << y << " is " << x / y <<  
       " with a remainder of " << x  y << "\n";  
 
  x = 1; 
  y = 2; 
  cout << x << " / " << y << " is " << x / y << "\n" << 
          x << "  y;  
 
  return 0; 
}
10 / 3 is 3 with a remainder of 1
1 / 2 is 0
1 % 2 is 1"








3.5.modulus operator
3.5.1.The modulus operator.
3.5.2.Mod down by integer
3.5.3.Modular operator
3.5.4.Read int type variables and calculate mod value