C++ Online Compiler
Example: Modulo Positive Integers in C++
C
C++
C#
Java
Python
PHP
main.cpp
STDIN
Run
// Modulo Positive Integers #include <iostream> int main() { // Step 1: Declare positive integer variables int a = 17; int b = 5; // Step 2: Perform modulo operation int result = a % b; // Step 3: Print the result std::cout << a << " % " << b << " = " << result << std::endl; // Expected: 2 return 0; }
Output
Clear
ADVERTISEMENTS