搜索资源列表
表达式计算器
- 一个使用堆栈写的计算器,能够使用常用的数学函数.-use of a stack written by calculators, to use common math functions.
字符串表达式解析器
- 此程序实现的是一个运算器,是在一个程序的基础上进行改进的,计算器中需要的运算以及操作对象: IF,AND,OR,<,<=,>,>=,<>,=,== 数字0-9,(,),+,-,*,/, SIN,COS,TAN,POW,EXP,ABS,SQRT,INT,LN,LOG,MIN,MAX.-this program is a computing device that is in a process of improvement based on the
基于表达式的科学计算器
- 这是一个基于表达式的科学计算器,计算结果的有效位较长(16位);支持不严格的表达式输入(如cos(23)*sin(34)与cos(23)*sin(34与cos23*sin34等价);支持四种进制的数在一个表达式中同时出现的进制混合运算(除十进制外的各进制数不限于整数,如12d.3axh,xh是我的计算类所能识别的十六进制数的标识符);且程序做得也比较精细(如制作了鼠标键盘、窗口跟随、计算历史查看等),功能非常不错。-This is a formula based on the scientifi
stackexp
- 控制台下的一个表达式计算器,支持带符号小数+-*/以及指数运算,可以输入()来调整运算优先级,比如:输入1-2*(3+4^(1/2))=-9
calculators
- 表达式计算器,可以输入一个简单的正确的表达式后直接计算其结果
ExpCalculator
- 个人原创表达式计算器。用户以字符序列的形式输入实数表达式,最多可支持一元变量(可选),变量由用户赋值(默认为0)。能判断表达式是否合法,如果不合法,能给用户提供相应的提示信息(包括出错的位置),以便用户更正;有一定的容错能力,能够接受 ”2π”, ” x (“, “.3” , “005” 此类输入,能滤去空格;对合法表达式进行计算并能够给出正确结果,并视用户需要演示具体的计算过程
ccal
- 一款表达式计算器!很实用的!希望对大家有帮助
calculator.tar
- 所上载的是一个用lex与yacc开发的表达式计算器
ExprEval
- 中山大学编译原理课程的一个实验,根据OPP(算符优先)做的一个表达式计算器。 内有实验的设计文档。 实验要求支持sin,cos,max,min,power,mod,boolean,?:,等运算。 这个代码可以为学习编译原理的同学参考。
高级计算器 V1.0
- 系统支持的数学函数:PI ! ^ % SQR SQRT INT/TRUNC ROUND ABS FRAC SIN COS TAN ARCSIN ARCCOS ARCTAN LN LOG2 LOG10PI:圆周率。Exp!:计算Exp(表达式)的介乘。Exp1^Exp2:计算Exp1的Exp2次方。Exp1%Exp2:计算Exp1除以Exp2后的余数。Sqr(Exp):计算Exp的平方。Sqrt(Exp):计算Exp的平方根。Int(Exp)/Trunc(Exp):把Exp截断取整。Round(E
计算器(完整版)
- 一个简易的VC开发的计算器,可实现混合运算 用到逆波兰表达式-a simple calculator developed by VC, hybrid computing formula used reverse Poland
数学表达式计算器
- 这是一个对数学表达式求值的C++ class,详细的说明在Calculator.pdf中。 这个Calculator class虽然经过我多次测试,改正了不少错误,但我不保证在将来的使用中它不会对您的程序造成影响,对您在使用中造成的一切后果,本人不承担任何责任。-this a mathematical expression evaluates the C class, detailed descr iption of the Calculator.pdf China. The Calculato
计算表达式
- 这个是一个小型计算器,你可以输入一个表达式,就可以得到答案,支持优先级运算,-This is a small calculator, you can enter a regular expression, we can get an answer in support of Operation priority,
khss_Debug
- 带括号的算术表达式计算器.能完成一位数的带括号的算术表达式的运算,结果可以为多位数。用栈实现中缀表达式和后缀表达式的转换。-bracketed arithmetic expression calculator. Complete with a number of brackets arithmetic expression Operational results for the multi-digit number. With Stack Implementation grade express
ExpressionCaculator
- 利用算符优先算法制作的一个表达式计算器,它能够将一个C语言的表达式解析成四元式,然后根据算符优先的规则来计算表达式。-The use of operator precedence algorithm produced an expression calculator, it can be a C language expression parsing into four yuan type, then operator precedence rules to evaluate the expre
calc.rar
- 编译原理的课程设计 表达式计算器 C++,Principles of curriculum design to compile C++ expression evaluator
calcaccount
- 自定义表达式计算器 支持四则运算 可以计算比如(2+3)*4/3 之类表达式-Custom expression evaluator
calculator
- 本程序是算术表达式计算程序,通过输入表达式达到计算的目的(编译原理中的词法分析、算符优先分析,可代替目前普遍使用的计算器)。-This procedure is the arithmetic expression program, by entering the expression to achieve the purposes of the calculation (the compiler of the principle of lexical analysis, operator pri
VB
- 计算器的完整VB工程,可以计算表达式结果,平方^2,平方根^1/2,乘*,除/,三角函数用弧度如sin(30)表达式为sin(30*3.14159/180,-Calculator complete VB project, the results can be calculated expression, square ^ 2, the square root of ^ 1/2, multiplication*, division /, trigonometric functions in rad
计算器 2
- 与老的出栈入栈不同,用的递归手法计算表达式的值。(Unlike the old stack in the stack, the value of the expression is calculated recursively.)