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 < 1) {
- return;
- }
- cout << x << endl;
- rec(x - 1);
- }
- int main()
- {
- rec(5);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement