登录
首页 » Windows开发 » BleepInt.zip

BleepInt.zip

于 2023-04-22 发布 文件大小:7.25 kB
0 202
下载积分: 2 下载次数: 1

代码说明:

资源描述这个程序教你如何的运用在Delphi中内嵌汇编语言来使喇叭发出美妙的声音。

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

发表评论

0 个回复

  • C++对象消息传递,非常好用。
    C++对象消息传递,非常好用。-C object messaging, a very handy.
    2023-07-26 23:30:03下载
    积分:1
  • paoma Deng Xiao java WM xu
    paoma deng xiao java cheng xu-paoma Deng Xiao java WM xu
    2022-03-21 04:36:03下载
    积分:1
  • 禁用usb存储设备
    通过Windows消息循环检测Usb设备插入消息,通过调用Setupapi轮训设备管理器中的所有设备并匹配USB大容量存储设备,匹配成功之后调用api禁用设备管理中的usb设备,修改SetComState中参数即可重新启用USB设备
    2022-01-25 16:09:19下载
    积分:1
  • uda旧的实验控制台版本.仅作实验测试用途.仅有英文命令行版.含源代码....
    uda旧的实验控制台版本.仅作实验测试用途.仅有英文命令行版.含源代码. -uda old console version of the experiment. experimental testing purposes only. the only English version of the command line. containing the source code.
    2022-05-25 06:21:08下载
    积分:1
  • Simulates Group Velocity Dispersion curves in fiber optics
    Simulates Group Velocity Dispersion curves in fiber optics
    2023-05-08 05:30:02下载
    积分:1
  • 井字游戏
    一种游戏,两个玩家交替地把十字架和圆圈放在九格方格中的一个格子里;目标是在对手之前得到一排三个十字架或三个圆圈
    2022-04-20 10:17:34下载
    积分:1
  • very popular netbook/laptop design circuit for power management part,based on OZ...
    very popular netbook/laptop design circuit for power management part,based on OZ812.
    2022-03-22 15:25:48下载
    积分:1
  • 一种基于分类算法的网页信息提取方法.pdf
    一种基于分类算法的网页信息提取方法.pdf-A Method of Web Information Extraction Based on Classification Algorithm.
    2023-03-22 11:25:04下载
    积分:1
  • 一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong ga...
    一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong game that uses DirectX 7. I wrote it in just one day and the graphics are smooth - over 50 fps! There are sound FX too, but the best thing about the game is the computer AI. It doesn t simply chase the ball, it predicts the balls path even if it is going to bounce of several walls and moves accordingly. Clever AI doesn t mean it is impossible to beat - it means it acts like a human player making the game more fun. So - have fun!-DX pong is a neat pong game that uses DirectX 7. I wrote it in just one day and the graphics are smooth- over 50 fps! There are sound FX too, but the best thing about the game is the computer AI. It doesn t simply chase the ball, it predicts the balls path even if it is going to bounce of several walls and moves accordingly. Clever AI doesn t mean it is impossible to beat- it means it acts like a human player making the game more fun. So- have fun!
    2022-03-14 03:16:04下载
    积分:1
  • 银行帐户
    1.(帐户继承层次结构)创建账号,银行可能会用它来代表客户的银行账户的继承层次结构。所有客户在这家银行可以存款(即信用卡)资金投入到自己的帐户,并收回(即借记卡),资金从自己的账户。更具体的类型的帐户也是存在的。储蓄账户,比如,赚取其所持有的金钱利益。支票账户,比如,收取每笔交易的费用(如信用卡或借记卡)。活期账户,在另一方面,具有透支(负平衡)工具来取款。创建一个包含继承层次结构的基类账户,从账户类继承的派生类SavingsAccount,的CheckingAccount和CurrentAccount。基地classAccount应包括double类型来表示帐户余额中的一个数据成员。这个类应该提供接收一个初始的平衡,并用它来初始化数据成员的构造函数。的构造应验证的初始平衡,以确保它大于或等于0.0。如果不是,则平衡应设置为0.0和构造应显示一条错误信息,指出初始余额为无效。这个类应该提供三个成员函数。成员函数的信贷应该添加量的当前余额。成员函数借记应该退出账户资金,并确保扣款金额不超过该账户的余额。如果是这样,余额应保持不变,功能应打印信息“借方金额超过账户余额。”成员函数为getBalance应该回到当前余额。派生类SavingsAccount要继承的帐户上的功能,而且还包括一个double类型的数据成员指示分配给Account.SavingsAccount的构造的利息率(百分比)应该接收的初始平衡,以及用于SavingsAccount的兴趣的初始值率。 SavingsAccount应该提供的公共成员functioncalculateInterest返回一个双表示了兴趣账户所赚取的金额。成员函数calculateInterest应该由账户余额乘以利率确定这一数额。 [注:SavingsAccount应该继承的成员函数信用卡和借记卡作为是没有重新定义他们。]派生类的CheckingAccount应该继承基类的帐户,并包括一个double类型的附加数据成员,表示每transaction.CheckingAccount的构造所收取的费用应接收的初始平衡,以及一个参数,用来指示一费数额。类的CheckingAccount应该重新定义成员函数,信用和debitso它们从每当任一事务被成功地执行的帐户余额中减去费用。的CheckingAc
    2022-02-13 11:42:52下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载