Advertisement
Kordan

Вложенный цикл

Jan 28th, 2018
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main () {
  6.     setlocale (LC_ALL, "RUS");
  7.  
  8.     for (int i = 0; i < 5; i++) {
  9.         for (int j = 0; j < 8; j++) {
  10.             cout << '*';
  11.             }
  12.         cout << endl;
  13.         }
  14.     cout << endl;
  15.     //system ("pause");
  16.     return 0;
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement