登录
首页 » 其他项目 » 用C++ BUILDER实现的一个类似推箱子的益智游戏。为了简化,采用GDI实现图形显示。适合初学者研究...

用C++ BUILDER实现的一个类似推箱子的益智游戏。为了简化,采用GDI实现图形显示。适合初学者研究...

于 2022-03-14 发布 文件大小:486.42 kB
0 223
下载积分: 2 下载次数: 1

代码说明:

用C++ BUILDER实现的一个类似推箱子的益智游戏。为了简化,采用GDI实现图形显示。适合初学者研究-C BUILDER achieve a similar Tuixiangzi of educational games. To simplify using GDI achieved graphics. Research for beginners

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

发表评论

0 个回复

  • 应用于自动化测试行业,对从事相同行业的人有极大的帮助。...
    应用于自动化测试行业,对从事相同行业的人有极大的帮助。-Applied to automated testing industry, engaged in the same industry are of great help.
    2022-08-05 21:31:37下载
    积分:1
  • 很好用的通用库存管理程序,具有很多实用功能。管理员密码是...
    很好用的通用库存管理程序,具有很多实用功能。管理员密码是-the common good inventory management procedures, with many useful functions. Administrator password is
    2022-04-25 17:45:39下载
    积分:1
  • NETEM 的预测试题
    NETEM 的预测试题-NETEM questions
    2022-06-21 17:58:58下载
    积分:1
  • 一个有限元分析软件,在网上找到的,一起学习。
    一个有限元分析软件,在网上找到的,一起学习。-A finite element analysis software, find online, along with learning.
    2022-04-01 01:51:35下载
    积分:1
  • 牛顿-拉夫逊法潮流计算 基本步骤:   (1)形成节点导纳矩阵   (2)将各节点电压设初值U,   (3)将节点初值代入相关...
    牛顿-拉夫逊法潮流计算 基本步骤:   (1)形成节点导纳矩阵   (2)将各节点电压设初值U,   (3)将节点初值代入相关求式,求出修正方程式的常数项向量   (4)将节点电压初值代入求式,求出雅可比矩阵元素   (5)求解修正方程,求修正向量   (6)求取节点电压的新值   (7)检查是否收敛,如不收敛,则以各节点电压的新值作为初值自第3步重新开始进行狭义次迭代,否则转入下一步   (8)计算支路功率分布,PV节点无功功率和平衡节点柱入功率。-Newton-Raphson method flow calculation basic steps : (1) formation of nodal admittance matrix (2) to set up the initial node voltage U, (3) the initial node-generation-related demand. calculated that the constant term formula Vector (4) nodes will be incorporated into the initial voltage-seeking, calculated Jacobian matrix elements (5) solving that equation, seek to amend the vector (6) to strike a new node voltage value (7) to check whether convergence, if not restrained. concentrated in the nodes of the new voltage as the initial value since the first three steps to re-start the narrow iterations. Otherwise, turn into the next (8) Calculation branch power distribution, PV nodes reactive power and balance-node into powe
    2022-06-02 03:02:29下载
    积分:1
  • a JavaScript netnew written, the effect is to follow the mouse around the halo o...
    一个用JavaScript写的网页特效,效果是跟随在鼠标周围的彩色的光环。把mousefollow.txt中的代码插入到和之间或插入到和之间就能看到效果。-a JavaScript netnew written, the effect is to follow the mouse around the halo of color. Mousefollow.txt put the code inserted into lt; Bodygt; And lt;/Bodygt; Or between inserted into lt; Headgt; And lt;/Headgt; Between you can see results.
    2023-09-07 04:25:03下载
    积分:1
  • 通过一个别人提供的VCdll获得硬盘ID和CPU序列号
    通过一个别人提供的VCdll获得硬盘ID和CPU序列号-VCdll provided by others to obtain a hard disk ID and the CPU serial number
    2023-07-09 01:25:03下载
    积分:1
  • 非常好玩的游戏。网上收集。只提供参考。下载后24小时内删除...
    非常好玩的游戏。网上收集。只提供参考。下载后24小时内删除-very fun game. Online collection. For information only. After downloading deleted within 24 hours
    2022-05-28 15:20:49下载
    积分:1
  • matlab的常用函数工具包,可以计算多数的图论问题,和组合问题。...
    matlab的常用函数工具包,可以计算多数的图论问题,和组合问题。-Matlab tool kits commonly used functions can be calculated majority of the graph theory, and composition.
    2022-02-02 05:32:19下载
    积分:1
  • 对任何集体(如你自己的类)的问题描述…
    一:问题描述 针对某个集体(比如你所在的班级)中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相对的建表和查表程序。 二:基本要求 假设人名为中国人姓名的汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数法构造,用伪随机探测再散列法处理冲突。 三:实现提示 如果随机函数自行构造,则应首先调整好随机函数,使其分布均匀。人名的长度均不超过19个字符(最长的人名如:庄双双(ZHAGN SHUANG SHUANG)。字符的取码方法可直接利用C语言中的tosacii函数,并可对过长的人名先作折叠处理。 四:需求分析 本演示程序是对哈希表的建立和查找进行演示,主要数据来自自己编写的人名“A~~Z”等字母组成,拼音由开头的字母组成的词组,查找时用伪随机探测再散列法处理冲突。随机产生人名的位置。具体的程序内容在源程序里面有比较详细的解析。程序的运行在下列有详细的介绍。 -one : Problem description against any collective (such as your own classes) of "names" design a hash table. you make the average length of not more than R, completes the construction and Lookup Table procedures. Two : the assumption that the basic requirements were known as the Chinese name of Chinese pinyin form. Hash Table question Enter the names of a total of 30, you take the average length of a maximum of two. Hash functions with a few exception I stay constructed using pseudo-random re-hash detection method to resolve disputes. 3 : Achieving suggested ra
    2022-01-22 16:42:56下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载