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