Josif_tepe

Untitled

Dec 15th, 2025
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.    
  6.     int a = 15;
  7.     int b = 7;
  8.    
  9.     int zbir = a + b;
  10.     int razlika = a - b;
  11.     int proizvod = a * b;
  12.     int kolicnik = a / b;
  13.    
  14.     cout << "Zbir: " << zbir << endl;
  15.     cout << "Razlika: " << razlika << endl;
  16.     cout << "Proizvod: " << proizvod << endl;
  17.     cout << "Kolicnik: " << kolicnik << endl;
  18.    
  19.    
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment