登录
首页 » Windows开发 » 一个用VB写的四则计算器源代码. 功能:1、实现简单的四则运算 2、加入了每日一贴的功能,为了练习每日一贴程序的编制方法,其实本程序完全没有必要加入此功能 3、...

一个用VB写的四则计算器源代码. 功能:1、实现简单的四则运算 2、加入了每日一贴的功能,为了练习每日一贴程序的编制方法,其实本程序完全没有必要加入此功能 3、...

于 2022-02-12 发布 文件大小:20.62 kB
0 92
下载积分: 2 下载次数: 1

代码说明:

一个用VB写的四则计算器源代码. 功能:1、实现简单的四则运算 2、加入了每日一贴的功能,为了练习每日一贴程序的编制方法,其实本程序完全没有必要加入此功能 3、程序的难点在于对每个按键的判断,其实是比较麻烦,但技术含量不高,仔细看都能看懂 -a VB wrote four calculators source code. Features : 1, the simple four Operational 2, joined a daily functions, in order to practice a daily process of the preparation method, the procedure is absolutely not necessary to include this feature 3, the procedure is difficult for everyone by Bond judgment, which is troublesome, but not high technological content, carefully read all understand

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

发表评论

0 个回复

  • Microsoft Windows嵌入式系列课程(4):Windows CE电源管理
    Microsoft Windows嵌入式开发系列课程(4):Windows CE电源管理-Microsoft Windows Embedded Development Series courses (4): Windows CE Power Management
    2022-03-14 02:06:44下载
    积分:1
  • 欢迎使用闰年查询程序,大家好啊!查询一下几时是闰年也是生活中的一种乐趣嘛...
    欢迎使用闰年查询程序,大家好啊!查询一下几时是闰年也是生活中的一种乐趣嘛-welcomed the use of procedures for leap year, we said! Inquiries about the earliest it is a leap year is a life of fun!
    2022-01-28 17:29:17下载
    积分:1
  • 通过使用 MIMAX CARO 游戏
    通过使用MIMAX alogrithm的CARO游戏的例子。希望你喜欢它极大极小(有时极大极小或毫米[ 1 ])是一种用于决策理论,决策规则的博弈理论,为减少最坏的情况下可能发生的损失统计与哲学(最大损失)的情况。最初制定的二人零和
    2022-08-16 15:12:22下载
    积分:1
  • 在datawindow中实现日历下拉选择功能
    在datawindow中实现日历下拉选择功能-datawindow in achieving the drop-down selection of functional calendar
    2022-07-08 14:17:42下载
    积分:1
  • 早期的windows就是采用的INI格式文本文件。现在很多应用程序包括大型的软件也还在采用格式化文本文件保存配置参数,比如Bentely MicroStatio...
    早期的windows就是采用的INI格式文本文件。现在很多应用程序包括大型的软件也还在采用格式化文本文件保存配置参数,比如Bentely MicroStation GIS平台GEOGRAPHICS8.0。 本文给出的就是利用VC来读取和分析配置文本文件,-early windows is the INI format text file. Now many applications including large software is also used to preserve document formatting text configuration parameters, such as MicroStation Bentely GEOGRAPHICS8.0 GIS platform. This paper is using VC to read and analyze configuration text file,
    2022-06-26 07:27:32下载
    积分:1
  • 本程序为图形学课程的一个小程序,注点是在用画点和各种图形的算法来实现各种图...
    本程序为图形学课程的一个小程序,注点是在用画点和各种图形的算法来实现各种图-the procedures for graphics courses a small program, the Note is painted various graphical point and the algorithm to achieve maps
    2023-06-01 17:10:03下载
    积分:1
  • 将一个十进制数利用堆栈转换成其他进制数的小程序
    将一个十进制数利用堆栈转换成其他进制数的小程序-A decimal number using stack converted to hexadecimal number of other small programs
    2023-07-21 11:35:03下载
    积分:1
  • PIC进行AD转换示例
    学习PIC18系列单片机的AD转换步骤,通过采集电压来进行展示。
    2022-01-26 03:36:55下载
    积分:1
  • 一个漂亮的代码,请使用
    一个漂亮的代码,请使用-a beautiful code, please use the
    2022-04-26 21:32:59下载
    积分:1
  • 1背包问题是NP难题。0
    0-l背包问题是子集选取问题。一般情况下,0-1背包问题是NP难题。0-1背包 问题的解空间可用子集树表示。解0-1背包问题的回溯法与装载问题的回溯法十分类 似。在搜索解空间树时,只要其左儿子结点是一个可行结点,搜索就进入其左子树。当 右子树有可能包含最优解时才进入右子树搜索。否则将右子树剪去。设r是当前剩余 物品价值总和;cp是当前价值;bestp是当前最优价值。当cp+r≤bestp时,可剪去右 子树。计算右子树中解的上界的更好方法是将剩余物品依其单位重量价值排序,然后 依次装入物品,直至装不下时,再装入该物品的一部分而装满背包。由此得到的价值是 右子树中解的上界。-0-l knapsack problem is selected subset of the problem. Under normal circumstances, 0-1 knapsack problem is NP-hard. 0-1 knapsack problem the solution space available subset of the tree said. Xie 0-1 knapsack problem with the law retroactively loading the retroactive law very similar. The search solution space trees, as long as their son left node is a viable nodes, the search entered its left subtree. When the right subtree is the optimal solution may contain only son into the right tree search. It will cut right subtrees. Suppose that r is the total value of the remaining items; Cp is the current value; Bestp is currently the best value. When cp r bestp, they can cut right subtrees. Calculation right
    2022-03-25 00:00:51下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载