-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
83 lines (66 loc) · 2.17 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: main.c
* Author: vinicius
*
* Created on October 15, 2016, 1:55 PM
*/
#include "Sudoku.h"
/*
*
*/
int main(int argc, char** argv) {
int arq = 1, opc;
char nomeArquivo[30];
Sudoku sudoku;
while (arq) {
printf("Digite o nome do arquivo: ");
scanf("%s", nomeArquivo);
getchar();
if (preencheTabuleiro(&sudoku, nomeArquivo)) {
printf("1- Resolver Sudoku | 2- Resolver Sudoku em modo análise\n");
scanf("%d", &opc);
while (opc < 1 || opc > 2) {
printf("1- Resolver Sudoku | 2- Resolver Sudoku em modo análise\n");
scanf("%d", &opc);
}
switch (opc) {
case 1:
printf("Tabuleiro Inicial:\n");
imprimeTabuleiro(sudoku);
if (resolveSudoku(&sudoku)) {
printf("Resolvido !\n");
imprimeTabuleiro(sudoku);
} else
printf("O tabuleiro nao possui solucao !\n");
break;
case 2:
printf("Tabuleiro Inicial:\n");
imprimeTabuleiro(sudoku);
if (resolveSudoku(&sudoku)) {
printf("Resolvido !\n");
imprimeTabuleiro(sudoku);
printf("\nForam feitas %d tentativas\n\n", sudoku.nTentativas);
} else
printf("O tabuleiro nao possui solucao !\n");
break;
default:
printf("Opção inexistente !\n");
break;
}
printf("Deseja carregar um novo tabuleiro ?\n0- Nao | 1- Sim\n");
scanf("%d", &arq);
if (arq == 1) {
zeraTabuleiro(&sudoku);
getchar();
}
} else {
printf("ERRO !\n");
}
}
return (EXIT_SUCCESS);
}