Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- // input output stream
- using namespace std;
- int main()
- {
- int broj1 = 10;
- int broj2 = 15;
- cout << broj1 + broj2 << endl;
- cout << broj1 - broj2 << endl;
- cout << broj1 * broj2 << endl;
- cout << broj1 / broj2 << endl;
- /*
- Operatori vo C++;
- +: za sobiranje
- -: za odzemanje
- *(asterix): mnozenje
- /: delenje
- */
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment