blob: 70df271e20ab5f5e766f53598909b4b81b37d7b0 (
plain)
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
|
//============================================================================
// Name : Sudoku.cpp
// Author : lst
// Version : a.0
// Copyright : Your copyright notice
// Description : Sudoku in C++.
//============================================================================
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int table[9][9];
int main() {
for(int i = 0; i < 9; i++){
table[0][i] = i + 1;
}
srand((unsigned int)time(NULL));
shuffle((int *)&table[0], 9);
while(!put_line(1))
{
shuffle((int *)&table[0], 9);
}
for(int x = 0; x < 9; x++){
for(int y = 0; y < 9; y++){
cout << table[x][y] << " ";
}
cout << endl;
}
return 0;
}
|