Advertisement
35657

Untitled

Jan 26th, 2024
720
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8.     setlocale(LC_ALL, "ru");
  9.  
  10.     int count = 15;
  11.     int i = 1;
  12.  
  13.     while (i <= count) {
  14.         cout << '*';
  15.         i++;
  16.     }
  17.     cout << endl;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement