我在 C++ 中练习过。它是 8-Queens 的解决方案,输出所有 92 种可能的解决方案。
然后我用 C# 编写了它。在这里,但最后我有一个错误。
int[,] state = new int[8, 8];
solve_state(state, 0); // Error: an object reference is required for non-//static field,method
}
}
}
}