24 lines
415 B
C++
24 lines
415 B
C++
#include<cstdlib>
|
|
#include<ctime>
|
|
#include<iostream>
|
|
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
int arr[10][10];
|
|
srand(time(NULL));
|
|
for(auto& row: arr)
|
|
for(auto& col: row)
|
|
col = rand() % 20 + 1;
|
|
|
|
([&](){
|
|
for(auto& row : arr)
|
|
for(auto& col: row)
|
|
{
|
|
cout << col << endl;
|
|
if(col == 20)return;
|
|
}
|
|
})();
|
|
return 0;
|
|
}
|