fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. void print(int n);
  6.  
  7. int main()
  8. {
  9. int n;
  10. cout << "please enter a number: " << endl;
  11. cin >> n;
  12. print(n);
  13. }
  14.  
  15. void print(int n)
  16. {
  17. std::cout << std::string(n, '*') << '\n';
  18.  
  19. if (n > 1)
  20. {
  21. print(n - 1);
  22. std::cout << std::string(n, '*') << '\n';
  23. }
  24. }
Success #stdin #stdout 0s 3432KB
stdin
10
stdout
please enter a number: 
**********
*********
********
*******
******
*****
****
***
**
*
**
***
****
*****
******
*******
********
*********
**********