- 1、本文档共13页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
基于VB的科学计算器论文正文
引言
说起计算器,值得我们骄傲的是,最早的计算工具诞生在中国。 中国古代最早采用的一种计算工具叫筹策,又被叫做算筹。这种算筹多用竹子制成,也有用木头,兽骨充当材料的。约二百七十枚一束,放在布袋里可随身携带。在俄罗斯,最早用来计算的工具是“俄罗斯算盘”。它是俄罗斯的“民族计算器”,直到90年代中期,还被出纳员们使用着。值得注意的是,在1986年出版的教科书《贸易计算学》中,有整整一章是关于如何使用算盘的。 和算盘同时代的计算工具是早在17世纪就出现的“科学环”,在革命(1917)前,它主要用来对数计算。计算器出现以后,“科学环”才被淘汰。直到今天仍在使用的珠算盘,是中国古代计算工具领域中的另一项发明,明代时的珠算盘已经与现代的珠算盘几乎相同。17世纪初,西方国家的计算工具有了较大的发展,英国数学家纳皮尔发明的“纳皮尔算筹”,英国牧师奥却德发明了圆柱型对数计算尺,这种计算尺不仅能做加减乘除、乘方、开方运算,甚至可以计算三角函数,指数函数和对数函数,这些计算工具不仅带动了计算器的发展,也为现代计算器发展奠定了良好的基础,成为现代社会应用广泛的计算工具
三 各模块程序设计分析
①.sin、cos、tan、ATn按钮分别求某个数值/角度/弧度的正弦、余弦、正切、反正切值。
①.Exp、Rnd按钮分别返回e的x次幂和取[0,999999999)之间的随机数,而mod保证了随机数是整数。
③.角度、弧度按钮计算sin、cos、tan、ATn时进行转换。
四:设计界面
本计算器只有1个窗体,上面有Label控件,Commandbutton控件, Frame控件, OptionButton控件以及用Line控件画出Backspace按钮旁边的矩形,矩形里面也有一个Label控件。
五 程序部分
初始化部分:
Form Calc Caption 复杂数学计算器
Frame Frame1 Caption Select File to Add
OptionButton Option1 Caption 八进制
OptionButton Option2 Caption 十进制
CommandButton Command23 Caption Cot
CommandButton Command22 Caption n!
CommandButton Command21 Caption PI
CommandButton Command20 Caption Log
CommandButton Command19 Caption ln
CommandButton Command18 Caption Exp
CommandButton Command17 Caption x^2
CommandButton Command16 Caption x^3
CommandButton Operate Caption ^
CommandButton Command14 Caption Tan
CommandButton Command13 Caption Cos
CommandButton Command12 Caption Sin
CommandButton Command11 Caption M+
CommandButton Command10 Caption MS
CommandButton Command9 Caption MR
CommandButton Command8 Caption MC
CommandButton Command7 Caption 1/x
CommandButton Command6 Caption %
CommandButton Command5 Caption Sqrt
CommandButton Command4 Caption +/-
Textbox Result Text 0
CommandButton Calc Caption =
CommandButton Command3 Caption C
CommandButton Command2 Caption CE
CommandButton Command1 Caption Backspace
CommandButton Operate Caption +
CommandButton Operate Caption -
CommandButton Operate Caption *
CommandButton Operate Caption /
CommandButton Dot Caption .
CommandButton Number Caption 9
CommandButton Number Caption 8
CommandButton Number Caption
文档评论(0)