josiftepe

Untitled

Oct 23rd, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <iostream>
  2. // input output stream
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8.     int broj1 = 10;
  9.     int broj2 = 15;
  10.     cout << broj1 + broj2 << endl;
  11.     cout << broj1 - broj2 << endl;
  12.     cout << broj1 * broj2 << endl;
  13.     cout << broj1 / broj2 << endl;
  14.     /*
  15.      Operatori vo C++;
  16.      +: za sobiranje
  17.      -: za odzemanje
  18.      *(asterix): mnozenje
  19.      /: delenje
  20.      
  21.      */
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment