搜索资源列表
简单的表达式求值.rar
- 比Windows自带的高级一点的计算器,能将整个表达式输入,然后求值。 这个程序要求读者具备编译原理的一些知识。
诺亚高级计算器rcalc.rar
- 一个科学计算器,包含表达式计算功能
一元稀疏多项式计算器
- 一多项式求值,求导,减法,乘法,加法. 输出形式为类数学表达式, 指数升序排列.-a polynomial function, derivation, subtraction, multiplication and addition. Output form of mathematical expression category, the index in ascending order.
简单的表达式求值
- 比 Windows 自带的高级一点的计算器,能将整个表达式输入,然后求值。这个程序要求读者具备编译原理的一些知识-than Windows, bringing their senior point calculators, the entire expression input, and then evaluated. This procedure requires the reader has compiled some of the principles of knowledge
表达式计算器
- 一个使用堆栈写的计算器,能够使用常用的数学函数.-use of a stack written by calculators, to use common math functions.
计算器
- 一款用C语言编写的计算器 输入:数学表达式(数字、加、减、乘、除和括号) 输出:表达式结果 知识点:队列、堆栈
java实现的表达式计算器
- java实现的表达式计算器
VC计算器
- VC计算器 功能 1、完成了实验要求的所有内容 2、可以连续输入运算,对于输入的表达式能够按算符优先级进行处理。如输入2+3*2时,输出为8,而不是10 3、可以处理含括号的表达式 4、十六进制、八进制、二进制可以双字、单字和字节三种长度进行处理 5、科学计数法表示,当输入值或者计算结果超过10^16时会自动以科学计数法表示 6、增加了科学计算器的一些设施,如退格键,清空与归零键,求阶乘,π,求Ln,求双曲函数等 7、可以使用键盘快捷键 8、错误提示 使用 1、Sin、Cos、Tan、Log、M
诺亚高级计算器rcalc
- 一个科学计算器,包含表达式计算功能-A scientific calculator, including the expression of computing power
jisuanqi
- VC++课程设计(GDUT) 计算器 (内含实验报告) 1.设计任务 系统地学习面向对象编程思想,了解MFC架构,逐步熟悉可视化编程环境Visual C++,并在此环境下设计并实现一个简单计算器系统,该计算器应能实现如下功能: 1)、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算 2)、科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运算 3)、以角度、弧度两种方式实现上述部分函数 4)、具备历史计算的记忆功
ExprEval
- Java编写的表达式计算器, 即可以像我们书写表达式那样直接输入计算表达式, 程序自动进行运算, 支持加减乘除幂运算以及判断表达式如A?B C, 程序包含完整的Document和测试运行环境-Java calculator prepared expressions that can be done as we write the expression directly into the calculation expression, the program automatically compu
WindowsApplication1
- 基于编译原理的表达式计算器 使用算符优先算法实现了表达式计算器,能分析用户输入的表达式是否正确,支持括号运算、浮点运算、简单的四则运算、复杂的表达式运算、进制之间的相互转换等。操作简单,界面清晰。-Design of the expression calculator based on the compiler theory
Calculation
- 一个具有基本功能的计算器(附有文档),输入:一个算术表达式串。具有加减乘除,cos,sin,求n次方,开平方等中等算术功能-A calculator with basic functions (with document), enter: an arithmetic expression string. Multiplication and division with addition and subtraction, cos, sin, seek n-th power, open square
GBCalu
- 高博文本计算器,支持+,-,*,/,平方,及数学函数表达式的计算-Bo Gao text calculator, support+,-,*,/, square, and the calculation of mathematical function expression
Calculator_MFC
- 基于表达式求值的科学计算器 VC知识库上的一份计算器源码, 压缩包里包括下载网页, 请用FF打开 开发环境 VC++6.0 基于MFC开发的 -Expression evaluation based on the scientific calculator to a calculator on the VC Knowledge Source, compression bag, including the download page, please use the FF to o
calculator
- 基于逆波兰表达式的表达式计算器,支持计算加减乘除以及包含任意级数括号的表达式(An expression calculator based on an inverse Polish expression that supports the expression of addition, subtraction, multiplication and division, and parentheses)
栈计算器
- 一个简单的计算器,可以实现带括号的表达式运算,具体描述看附件(A simple calculator that can be used to perform expressions with parentheses, and a specific descr iption of the attachment.)
javafx计算器
- 平台使用eclipse,通过javafx来实现简单计算器的相关功能,包括加减乘除、括号运算和表达式错误检测。(The use of Eclipse platform, through the JavaFX to realize the function of a simple calculator, including brackets, add, subtract, multiply and divide operation and expression error detection.)
计算器 2
- 与老的出栈入栈不同,用的递归手法计算表达式的值。(Unlike the old stack in the stack, the value of the expression is calculated recursively.)
计算器程序
- 自学C语言中相关知识,设计出模拟简单计算器程序。要求如下所述: 1. .必须具有+、-、×、÷简单算术运算以及清除的功能 2. 输出显示简易计算器的界面; 3. 可以通过键盘上“↑←↓→”符号来选择需要输入的数据,点击键盘上“=”或者计算器界面的“=”将计算结果输出显示; 4. 也可以通过输入窗口,直接从键盘上输入要计算的表达式,点击键盘上“=”或者计算器界面的“=”将计算结果输出显示; 5. 选用任意一种(上述3或4)数据输入方法的测试表达式及运算结果均可以完整地在某个窗口中显示出来。 6.