Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <queue>
- #include <vector>
- using namespace std;
- void print(int brojac) {
- if(brojac > 3) {
- return;
- }
- cout << "HELLO WORLD" << endl;
- print(brojac + 1);
- }
- int main()
- {
- print(1);
- return 0;
- }
- //print(1)
- //print(2)
- //print(3)
- //print(4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement