parent
33a0ef7864
commit
733fb814e6
@ -0,0 +1,19 @@
|
||||
#include<iostream>
|
||||
#include<stdlib.h>
|
||||
#include<time.h>
|
||||
#include<stdbool.h>
|
||||
#define N 9
|
||||
#include <stdio.h>
|
||||
using namespace std;
|
||||
int mat(int matrix[9][9])
|
||||
{
|
||||
for (int i = 0; i < 9; i++)
|
||||
{
|
||||
for (int j = 0; j < 9; j++)
|
||||
{
|
||||
printf("%d ", matrix[i][j]);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in new issue