资源描述:
《基于vc++60的科学计算器实现》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、摘要目前,科学计算器的应用非常广泛,从科研、生产、国防、文化、卫生、直到家庭生活,都离不开科学计算器的服务。通过使用科学计算器,避免了人工运算的繁琐,以及人工运算可能带来的较大误差和运算错误,给人们的运算带来了极大的方便。这篇文章主要介绍用软件的方法实现科学计算器系统,包括:科学计算器系统的概述,科学计算器系统的开发原理和主要实现的功能,子模块的设计和实现技术。其中,重点介绍了对话框、控件的使用,不调用库函数,通过计算方法的原理来实现函数计算。本系统需要实现以下功能:加、减、乘、除、余运算、倒数、乘方运算、开方运算、幂运算、对数运算、指数运算、正弦函数运算、
2、余弦函数运算、正切函数运算、余切函数运算、反正弦函数运算、反余弦函数运算、反正切函数运算、反余切函数运算、排列组合运算和弧度与角度之间的转换,能输入正负数、小数,具有清零、退格功能,具有连续运算的能力。关键词:对话框、控件、计算方法48ABSTRACTCurrently,theapplicationofscientificcalculatorisveryextensive.Itcannotbegetawayfromtheserviceofscientificcalculatorinthefieldofresearch,production,nationald
3、efense,culture,hygiene,evenfamilylife.Byusingscientificcalculator,thetediousartificialoperation,thelargererrorsandoperationalmistakes,whicharecausedbyartificialoperation,canbeavoided.Itbringsmuchconveniencetopeople'soperation.Thisarticlemainlyintroducesascientificcalculatorsystemim
4、plementingfromtheperspectiveofsoftware.Itincludestheoverviewanddevelopmentalprincipleofscientificcalculatorsystem.Italsocontainstheprimaryfunctions,whichhavebeenimplemented,thedesignandimplementaltechnologyofsub-modules.Amongthem,itforcesonintroducingtheusageofdialogboxandcontrolsa
5、swellastheimplementationofmathematicfunctionwithoutusinglibraryfunction,butcomputingmethod.Thesystemneedstoachievethefollowingfunctions:adds,subtracts,multiplies,divides,theremainderoperation,thecountdownoperation,radicand,powercalculation,thelogandindexcalculation,theoperationofsi
6、nefunction,cosinefunction,tangentfunction,cotangentfunction,arcsinefunction,arccosinefunction,arctangentfunctionandarccotangentfunction,permutationsandcombinationsoperation,theconversionbetweenradianandangle,thecapabilityofinputtingdecimal,positiveandnegativenumbers,theresetandback
7、spacefunction,continuousoperationalcapacity.Keywords:dialogbox,controls,computingmethod48目录摘要IABSTRACTII第一章科学计算器系统概述11.1设计科学计算器系统的原由11.2科学计算器的发展史11.3VisualC++6.0简介2第二章科学计算器系统的设计32.1系统设计原理32.2系统主要功能要求32.3系统总体设计32.3.1系统设计目标32.3.2系统功能模块划分42.3.3系统运行环境4第三章科学计算器系统的实现53.1对话框的实现53.1.1对话框概述
8、53.1.2主对话框、about对话框的创建53.1