Advertisement
Josif_tepe

Untitled

Apr 13th, 2025
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. void print(int x) {
  6.     if(x < 1) {
  7.         return;
  8.     }
  9.     cout << x << " ";
  10.     print(x - 1);
  11. }
  12. int main() {
  13.     print(5);
  14.    
  15.     return 0;
  16. }
  17. // print(5)
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement