Вот создали матрицу, дальше не знаю как:
#include "stdafx.h"
#include "iostream"
#include "math.h"
#include "stdio.h"
#include "conio.h"
#include "ctime"
#include "cstdlib"
#include "vector"
#include "deque"
using namespace std;
void mass(int **arr,int d, int c)
{
for (int i=1;i<d+1;i++)
for (int j=1;j<c+1;j++)
arr[j]=((rand()%10));
cout <<"Матрица: "<<endl;
for (int i=1;i<d+1;i++)
{
for(int j=1;j<c+1;j++)
cout << arr[j] <<" ";
cout << endl;
}
}
int main()
{
srand(time(NULL));
setlocale(LC_ALL, "Russian");
system("color F4");
int n,m;
cout <<"Введите длину строки: ";
cin >> m;
cout <<"Введите высоту столбика: ";
cin >> n;
cout << endl;
int **mess = new int * [n+1];
for (int i=1; i<n+1; i++)
mess = new int [m];
mass(mess,n,m);
_getch();
return 0;
}
#include "stdafx.h"
#include "iostream"
#include "math.h"
#include "stdio.h"
#include "conio.h"
#include "ctime"
#include "cstdlib"
#include "vector"
#include "deque"
using namespace std;
void mass(int **arr,int d, int c)
{
for (int i=1;i<d+1;i++)
for (int j=1;j<c+1;j++)
arr[j]=((rand()%10));
cout <<"Матрица: "<<endl;
for (int i=1;i<d+1;i++)
{
for(int j=1;j<c+1;j++)
cout << arr[j] <<" ";
cout << endl;
}
}
int main()
{
srand(time(NULL));
setlocale(LC_ALL, "Russian");
system("color F4");
int n,m;
cout <<"Введите длину строки: ";
cin >> m;
cout <<"Введите высоту столбика: ";
cin >> n;
cout << endl;
int **mess = new int * [n+1];
for (int i=1; i<n+1; i++)
mess = new int [m];
mass(mess,n,m);
_getch();
return 0;
}