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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Scanner;
public class Test {
static Scanner sudoku = new Scanner(System.in);
public static void main(String[] args) {
int Sudoku = 0;
int choix = 0;
String afficheur1 = null;
String afficheur2 = null;
String afficheur3 = null;
System.out
.println("*************************************Sudoku*********************************** ");
System.out
.println("Bienvenue dans le programme de Sudoku, ce programme ...");
System.out.println(" ");
System.out.println("Veuillez choisir un des choix suivants:");
System.out.println("1. Charger jeu.");
System.out.println("2. Jouer Sudoku.");
System.out.println("3. Quitter.");
Sudoku = sudoku.nextInt();
int charger_jeu = 0;
while (charger_jeu == 0) {
System.out.print(" Entrez votre choix : ");
afficheur1 = sudoku.nextLine();
if (afficheur1 == 1) {
charger_jeu = 1;
choix = 1;
} else {
charger_jeu = 0;
}
}
int jouer_sudoku = 0;
while (jouer_sudoku == 0) {
System.out.print(" Entrez votre choix : ");
afficheur2 = sudoku.nextLine();
if (afficheur2 == 2) {
jouer_sudoku = 1;
choix = 2;
} else {
jouer_sudoku = 0;
}
}
int quitter = 0;
while (quitter == 0) {
System.out.print(" Entrez votre choix : ");
quitter = sudoku.nextLine();
if (afficheur3 == 3) {
quitter = 1;
choix = 3;
} else {
quitter = 0;
}
}
if (choix == 1) {
// Methode chargerJeu
}
if (choix == 2) {
// jouerSudoku
}
if (choix == 3) {
System.exit(0);
}
}
public void chargerJeu(String cheminDuFicher) throws IOException {
int[][] tab1 = new int[9][9];
try (Scanner scanner = new Scanner(new File(cheminDuFicher))) {
while (scanner.hasNextInt()) {
int x = scanner.nextInt();
int y = scanner.nextInt();
int z = scanner.nextInt();
tab1[x][y] = z;
}
return tab1;
}
}
public void savePartie(int[][] tab1, String cheminDuFichier)
throws IOException {
try (BufferedWriter writer = new BufferedWriter(new FileWriter(
new File(cheminDuFichier)))) {
// ici tu fais une double boucle sur le tableau et tu l'écris
for (int i = 0; i < tab1.length; i++) {
for (int j = 0; j < tab1[i].length; j++) {
if (tab1[i][j] != 0) {
writer.write(String.valueOf(i));
writer.write(" ");
writer.write(String.valueOf(j));
writer.write(" ");
writer.write(String.valueOf(tab1[i][j]));
writer.write(" ");
}
}
}
}
}
public void jouerSudoku() {
String ligne = null;
String colonne = null;
String valeur = null;
int[][] tab1 = new int[9][9];
int condition_ligne = 0;
while (condition_ligne == 0) {
System.out.print(" Veuillez choisir une ligne:");
ligne = sudoku.nextLine();
if (Integer.parseInt(ligne) > tab1.length) {
System.out
.println("Vous devez inserez un nombre compris entre 1 et 9");
condition_ligne = 0;
}
else if (Integer.parseInt(ligne) < tab1.length)
{
System.out
.println("Vous devez inserez un nombre compris entre 1 et 9");
condition_ligne = 0;
}
else {
condition_ligne = 1;
}
}
int condition_colonne = 0;
while (condition_colonne == 0) {
System.out.print(" Veuillez choisir une colonne:");
colonne = sudoku.nextLine();
if (Integer.parseInt(colonne) > tab1.length) {
System.out
.println("Vous devez inserez un nombre compris entre 1 et 9");
condition_colonne = 0;
}
else if (Integer.parseInt(colonne) < tab1.length)
{
System.out
.println("Vous devez inserez un nombre compris entre 1 et 9");
condition_colonne = 0;
}
else {
condition_colonne = 1;
}
}
int condition_valeur = 0;
while (condition_valeur == 0) {
System.out.print(" Veuillez choisir une valeur:");
colonne = sudoku.nextLine();
if (Integer.parseInt(valeur) > tab1.length) {
System.out
.println("Vous devez inserez un nombre compris entre 1 et 9");
condition_valeur = 0;
}
else if (Integer.parseInt(valeur) < tab1.length)
{
System.out
.println("Vous devez inserez un nombre compris entre 1 et 9");
condition_valeur = 0;
}
else {
condition_valeur = 1;
}
}
}
} |