登录
首页 » Chess Poker games » 有人工智能和联网对弈功能。画面自我感觉还行。人工智能弱了些。有双方落子记录、悔棋。还有“电脑代理功能”也就是不论和电脑还是联网和其他人下,中途离开,可以选电脑代...

有人工智能和联网对弈功能。画面自我感觉还行。人工智能弱了些。有双方落子记录、悔棋。还有“电脑代理功能”也就是不论和电脑还是联网和其他人下,中途离开,可以选电脑代...

于 2022-02-01 发布 文件大小:1.29 MB
0 180
下载积分: 2 下载次数: 1

代码说明:

有人工智能和联网对弈功能。画面自我感觉还行。人工智能弱了些。有双方落子记录、悔棋。还有“电脑代理功能”也就是不论和电脑还是联网和其他人下,中途离开,可以选电脑代理。此时电脑利用AI和对方下。-a game artificial intelligence and networking functions. Feeling self-images also OK. Some weak artificial intelligence. The two sides Kutno record, he never cheat in spain. There are "computer proxy functionality" is whether or computer and networking and other people, has left the agency can choose the computer. This computer uses AI and the other under.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 高智能五子棋及DELPHI源码
    高智能五子棋及DELPHI源码-intelligent and Delphi source code 331
    2023-03-04 13:10:03下载
    积分:1
  • 五子棋游戏,里面包括了一些禁手的规则,支持人人对战,MFC开发...
    五子棋游戏,里面包括了一些禁手的规则,支持人人对战,MFC开发-Backgammon games, which include some rules that ban hand, support for all Battle, MFC Developer
    2022-08-12 16:21:28下载
    积分:1
  • 五子棋游戏 可以两个人对弈,也可以和电脑下,并且可以选择电脑的难度。...
    五子棋游戏 可以两个人对弈,也可以和电脑下,并且可以选择电脑的难度。-331 games can be two players, and computer, the computer can be difficult to choose.
    2022-03-16 12:48:49下载
    积分:1
  • 这是一个完全的中国象棋程序,很好的人工智能,B。
    这是一个完全的中国象棋程序,有比较好的人工智能,而且可以自己来改善人工智能的参数,是一个非常好的例子,程序也比较庞大,编译后程序不再提供,解压在c:根目录下-This is a completely Chinese chess procedures, better artificial intelligence, but also to improve their own artificial intelligence parameters, is a very good example, procedures are relatively large, compiled procedures no longer available, unpacked in c : root directory
    2022-08-07 10:13:39下载
    积分:1
  • 本软件是用PHP语言编写的一个扫雷系统。值的学习与参考。
    本软件是用PHP语言编写的一个扫雷系统。值的学习与参考。-the software is to use PHP language of a mine clearance systems. The value of learning and reference.
    2022-02-05 21:51:09下载
    积分:1
  • 纯C编写的很强的Othello(黑白棋)游戏 只可惜是文本界面的。...
    纯C编写的很强的Othello(黑白棋)游戏 只可惜是文本界面的。-prepared in pure C strong Othello (reversi) Unfortunately, the game is a text-only interface.
    2022-01-31 04:14:44下载
    积分:1
  • 我自己写的一个想在网络上联机下象棋的代码。这个估计是只有我才有吧。。嘻嘻,应该是个唯一的东东了。...
    我自己写的一个想在网络上联机下象棋的代码。这个估计是只有我才有吧。。嘻嘻,应该是个唯一的东东了。-I want to write an on-line network in chess under the code. This estimate is that only I can have it. . Hee hee, should be only the vertical.
    2022-11-12 17:55:03下载
    积分:1
  • very good, there is a small place
    非常好, 有一个小地方要加上判段, 就是 "双3" , 两排交错的双 3, 就应该可以结束了. 或一排已经有 4颗而两头又是空的,这时也可宣告胜方,而不是要下满5颗棋才宣告那方胜. 这个代码可当窗体画线画圆很好的示例代码,特加精品.-very good, there is a small place- to add, is the "double 3", two rows of staggered two-three, it should be ended. or have a row of four and two are empty, then can be declared the winner. and not under-five game before declaring it Sheng Fang. This code can be when Circle Line Form painting good example code, grossing- up products.
    2022-03-07 19:04:54下载
    积分:1
  • 嵌套条件运算符的使用来完成这个问题:学术“= 90…
    1输出国际象棋棋盘 2打印楼梯,同时在楼梯上方打印两个笑脸 3古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 4判断101-200之间有多少个素数,并输出所有素数。 5打印出所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个“水仙花数”,因为153=1的三次方+5的三次方+3的三次方。 6将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。 程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成: (1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。 (2)如果nk,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你n,  重复执行第一步。 (3)如果n不能被k整除,则用k+1作为k的值,重复执行第一步。 7利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。-The use of nested conditional operator to complete this question: academic "= 90 points, said students with A between 60-89, with B, said 60 points or less, said to use C.
    2022-02-24 23:38:59下载
    积分:1
  • This is a good vc++ Do Chinese chess! Friends who are interested can download to...
    这是具有不错的vc++做的中国象棋!有兴趣的朋友可以下载来借鉴一下-This is a good vc++ Do Chinese chess! Friends who are interested can download to learn about
    2022-02-25 01:15:11下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载