当前位置: 首页 > news >正文

企业网站制作公司24小时接单郑州网站推广报价

企业网站制作公司24小时接单,郑州网站推广报价,wordpress 在线手册,哪些小程序可以赚钱五子棋是一种双人对弈的棋类游戏,通常在棋盘上进行。棋盘为 1515 的方格,黑白双方各执棋子,轮流在棋盘的格点上落子,先在横、竖、斜线上形成五个相连的同色棋子者获胜。五子棋规则简单,易学难精,兼具攻防和…

五子棋是一种双人对弈的棋类游戏,通常在棋盘上进行。棋盘为 15×15 的方格,黑白双方各执棋子,轮流在棋盘的格点上落子,先在横、竖、斜线上形成五个相连的同色棋子者获胜。五子棋规则简单,易学难精,兼具攻防和谋略,是一种极具智慧和趣味性的游戏。

以下是使用Java编写的五子棋游戏的示例代码:

棋盘类:

public class ChessBoard {private int[][] board;private final int rows;private final int cols;private final int winCount;public ChessBoard(int rows, int cols, int winCount) {this.rows = rows;this.cols = cols;this.winCount = winCount;board = new int[rows][cols];}public int getRows() {return rows;}public int getCols() {return cols;}public int getWinCount() {return winCount;}public int getChessman(int row, int col) {return board[row][col];}public boolean canPutChessman(int row, int col) {return board[row][col] == 0;}public void putChessman(int row, int col, int player) {board[row][col] = player;}public boolean isFull() {for (int i = 0; i < rows; i++) {for (int j = 0; j < cols; j++) {if (board[i][j] == 0) {return false;}}}return true;}public boolean hasWinner(int player) {for (int i = 0; i < rows; i++) {for (int j = 0; j < cols; j++) {if (board[i][j] == player) {if (checkHorizontal(i, j, player)) {return true;}if (checkVertical(i, j, player)) {return true;}if (checkDiagonal1(i, j, player)) {return true;}if (checkDiagonal2(i, j, player)) {return true;}}}}return false;}private boolean checkHorizontal(int row, int col, int player) {int count = 1;for (int j = col + 1; j < cols && board[row][j] == player; j++) {count++;}for (int j = col - 1; j >= 0 && board[row][j] == player; j--) {count++;}return count >= winCount;}private boolean checkVertical(int row, int col, int player) {int count = 1;for (int i = row + 1; i < rows && board[i][col] == player; i++) {count++;}for (int i = row - 1; i >= 0 && board[i][col] == player; i--) {count++;}return count >= winCount;}private boolean checkDiagonal1(int row, int col, int player) {int count = 1;for (int i = row + 1, j = col + 1; i < rows && j < cols && board[i][j] == player; i++, j++) {count++;}for (int i = row - 1, j = col - 1; i >= 0 && j >= 0 && board[i][j] == player; i--, j--) {count++;}return count >= winCount;}private boolean checkDiagonal2(int row, int col, int player) {int count = 1;for (int i = row + 1, j = col - 1; i < rows && j >= 0 && board[i][j] == player; i++, j--) {count++;}for (int i = row - 1, j = col + 1; i >= 0 && j < cols && board[i][j] == player; i--, j++) {count++;}return count >= winCount;}}

游戏界面类:

import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JFrame;
import javax.swing.JPanel;public class GameUI extends JFrame {private final int rows;private final int cols;private final int winCount;private ChessBoard board;private int currentPlayer;private boolean gameOver;private final JPanel panel;public GameUI(int rows, int cols, int winCount) {this.rows = rows;this.cols = cols;this.winCount = winCount;setTitle("五子棋");setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);setSize(cols * 40, rows * 40); // 每个棋子为正方形,大小为40setLocationRelativeTo(null);currentPlayer = 1;board = new ChessBoard(rows, cols, winCount);gameOver = false;panel = new JPanel() {@Overridepublic void paintComponent(Graphics g) {super.paintComponent(g);for (int i = 0; i < rows; i++) {for (int j = 0; j < cols; j++) {int chessman = board.getChessman(i, j);if (chessman == 1) {g.setColor(Color.BLACK);g.fillOval(j * 40 + 5, i * 40 + 5, 30, 30);} else if (chessman == 2) {g.setColor(Color.WHITE);g.fillOval(j * 40 + 5, i * 40 + 5, 30, 30);g.setColor(Color.BLACK);g.drawOval(j * 40 + 5, i * 40 + 5, 30, 30);}}}}};panel.addMouseListener(new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {if (gameOver) {return;}int col = e.getX() / 40;int row = e.getY() / 40;if (row < rows && col < cols && board.canPutChessman(row, col)) {board.putChessman(row, col, currentPlayer);panel.repaint();if (board.hasWinner(currentPlayer)) {gameOver = true;System.out.println("Player " + currentPlayer + " wins.");} else if (board.isFull()) {gameOver = true;System.out.println("Tie game.");} else {currentPlayer = 3 - currentPlayer; // 切换玩家}}}});add(panel);setVisible(true);}}

主程序:

public class Main {public static void main(String[] args) {new GameUI(15, 15, 5);}}

在主程序中创建游戏界面对象,传入行数、列数和获胜所需连续棋子个数,即可开始游戏。

效果如下:

快去体验一下吧!

http://www.khdw.cn/news/27014.html

相关文章:

  • 常州网站建设平台网络推广方案
  • 做设计时可以参考的网站成都seo优化排名推广
  • 做货代网站花西子网络营销案例分析
  • 书店如何做网站广东网站优化公司
  • 最好大连网站建设怎么用手机制作网站
  • 网站建设背景论文怎么在百度上发布广告
  • tinkphp5网站开发关键词爱站网
  • 网页制作与网站建设实战大全光盘在线网站排名工具
  • 大型大型网站制作上海牛巨微网络科技有限公司
  • html制作网站的步骤百度云资源搜索引擎
  • 做网站端口映射深圳网站设计制作
  • 直播网站 建设如何在百度提交自己的网站
  • wordpress修改后台样式怎样优化网站
  • 做的比较好旅游网站营销软文范文200字
  • 抚州做网站的公司网络营销工资一般多少
  • 微信链图片转换wordpress合肥网站优化方案
  • 0基础做电商从何下手西安seo推广
  • 东莞做网站需要多少钱企业如何进行网络推广
  • 公司建一个网站重庆排名seo公司
  • 个人可以做下载类网站吗新闻头条最新消息30字
  • 互联网建设企业网站百度账户登录
  • 宜兴建设公司网站建站网站
  • 周至做网站的公司sem竞价推广
  • 惠州住房和城乡建设部网站百度公司在哪
  • 赣州新闻广播时空seo助手
  • 北京网站开发工程师整站优化系统
  • 做网站怎么投放广告windows优化大师怎么卸载
  • 京美建站官网百度站长电脑版
  • 青海政府网站建设免费推广的方式有哪些
  • 创建小型网站的步骤百度网盘登录入口网页版