Advertisement
Josif_tepe

Untitled

May 22nd, 2024
569
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int a = 7;
  7.     int b = 4;
  8.     if(a < b)
  9.         cout << a + b << endl;
  10.     cout << a / b << endl;
  11.     cout << a % b << endl;
  12.    
  13.  
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement