⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tictactoe.java

📁 Java版的SAT求解器
💻 JAVA
字号:
package positronic.satisfiability.demos;

import positronic.satisfiability.boardgame.twodimensional.Board;
import positronic.satisfiability.boardgame.twodimensional.twoplayer.Game;

public class TicTacToe
{
	public static void main(String[] args)
	{
		Board board=new Board(3,3);
		Game ttt=new Game();
		//X is played by the black pieces
		ttt.createBlackPieces(5);
		//O is played by the white pieces
		ttt.createWhitePieces(5);
		
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -