mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
update
This commit is contained in:
parent
a83e44ea6c
commit
b8bcd82c26
@ -1,7 +1,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#define n 4
|
#define n 4
|
||||||
#define inc_loop(var,start,stop,step) for(int var=start;var<=stop;var+=step)
|
#define inc_loop(var, start, stop, step) for (int var=start; var <= stop; var+=step)
|
||||||
#define dec_loop(var,start,stop,step) for(int var=start;var>=stop;var-=step)
|
#define dec_loop(var, start, stop, step) for (int var=start; var >= stop; var-=step)
|
||||||
|
|
||||||
void PrintSol(int Board[n][n])
|
void PrintSol(int Board[n][n])
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user