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.
33 lines
868 B
33 lines
868 B
#include <stdio.h>
|
|
|
|
void print_sudoku(int matrix[9][9]) {
|
|
for (int i = 0; i < 9; i++) {
|
|
for (int j = 0; j < 9; j++) {
|
|
printf("%d ", matrix[i][j]);
|
|
if ((j + 1) % 3 == 0 && j != 8) {
|
|
printf("| ");
|
|
}
|
|
}
|
|
printf("\n");
|
|
if ((i + 1) % 3 == 0 && i != 8) {
|
|
printf("------+-------+------\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
int sudoku_matrix[9][9] = {
|
|
{5, 3, 0, 0, 7, 0, 0, 0, 0},
|
|
{6, 0, 0, 1, 9, 5, 0, 0, 0},
|
|
{0, 9, 8, 0, 0, 0, 0, 6, 0},
|
|
{8, 0, 0, 0, 6, 0, 0, 0, 3},
|
|
{4, 0, 9, 8, 0, 3, 0, 0, 1},
|
|
{7, 0, 0, 0, 2, 0, 0, 0, 6},
|
|
{0, 6, 0, 0, 0, 0, 2, 8, 0},
|
|
{0, 0, 0, 4, 1, 9, 0, 0, 5},
|
|
{0, 0, 0, 0, 8, 0, 0, 7, 9}
|
|
};
|
|
|
|
print_sudoku(sudoku_matrix);
|
|
return 0;
|
|
} |