fork download
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a = 7;
  6.  
  7. cout << a + 3 << endl; // Addition operator
  8. cout << a - 3 << endl; // Subtraction operator
  9. cout << a * 3 << endl; // Multiplication operator
  10. cout << a / 3 << endl; // Division operator
  11. cout << a % 3 << endl; // Modulus operator
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 4520KB
stdin
Standard input is empty
stdout
10
4
21
2
1