Task2 draft
This commit is contained in:
parent
939fdd28f2
commit
8545ee6a75
20
Hw1/task2.cpp
Normal file
20
Hw1/task2.cpp
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
#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;
|
||||||
|
}
|
Loading…
Reference in a new issue