You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
334 B

#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;
}