HLPL2/Hw1/task2.cpp

21 lines
274 B
C++
Raw Normal View History

2020-09-11 16:17:16 +00:00
#include <iostream>
#include <string>
using namespace std;
int main()
{
uint N = 5;
uint M = 6;
for (uint n = 0; n < N; n++) {
for (uint m = 0; m < M; m++) {
cout << "*";
}
cout << "\n";
}
cout << "\n";
return 0;
}