Advertisement
35657

Untitled

Apr 11th, 2024
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. using namespace std;
  5.  
  6. void star(int count) {
  7.     if (count == 0) {
  8.         return;
  9.     }
  10.     cout << '*';
  11.     star(count - 1);
  12. }
  13.  
  14.  
  15. int main() {
  16.     setlocale(LC_ALL, "ru");
  17.  
  18.     int count;
  19.    
  20.     cout << "Ведите количество: ";
  21.     cin >> count;
  22.     star(count);
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement