ReversePolishCalculator-master

所属分类:其他
开发工具:C#
文件大小:111KB
下载次数:1
上传日期:2017-09-28 11:48:33
上 传 者MartinSantos2706
说明:  Reverse Polish Calculator master best c# calculator rpn

文件列表:
.vs (0, 2017-02-26)
.vs\ReversePolishCalculator (0, 2017-02-26)
.vs\ReversePolishCalculator\v14 (0, 2017-02-26)
.vs\ReversePolishCalculator\v14\.suo (104448, 2017-02-26)
LICENSE (1071, 2017-02-26)
ReversePolishCalculator.sln (1516, 2017-02-26)
ReversePolishCalculator (0, 2017-02-26)
ReversePolishCalculator\Calculation (0, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam (0, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam\Dif.cs (983, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam\Minus.cs (992, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam\Mult.cs (1001, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam\POW.cs (1040, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam\Plus.cs (980, 2017-02-26)
ReversePolishCalculator\Calculation\DoubleParam\Setter.cs (1047, 2017-02-26)
ReversePolishCalculator\Calculation\GlobalVariableManager.cs (2198, 2017-02-26)
ReversePolishCalculator\Calculation\Method.cs (1217, 2017-02-26)
ReversePolishCalculator\Calculation\MethodManager.cs (1639, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam (0, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\Factorial.cs (1123, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff (0, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff\JEZ.cs (965, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff\JGZ.cs (1145, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff\JLZ.cs (1140, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff\JMP.cs (940, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff\JNZ.cs (1164, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\LabelStuff\Label.cs (1171, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\Print.cs (992, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\PrintLN.cs (1029, 2017-02-26)
ReversePolishCalculator\Calculation\SingleParam\SQRT.cs (1027, 2017-02-26)
ReversePolishCalculator\Calculator.cs (3770, 2017-02-26)
ReversePolishCalculator\Notation.cs (2286, 2017-02-26)
ReversePolishCalculator\Properties (0, 2017-02-26)
ReversePolishCalculator\Properties\AssemblyInfo.cs (1673, 2017-02-26)
ReversePolishCalculator\ReversePolishCalculator.csproj (3637, 2017-02-26)
ReversePolishCalculator\bin (0, 2017-02-26)
ReversePolishCalculator\bin\Debug (0, 2017-02-26)
ReversePolishCalculator\bin\Debug\ReversePolishCalculator.dll (11776, 2017-02-26)
... ...

# Reverse Polish notation (RPN) >_Reverse Polish notation (RPN) is a mathematical notation in which every operator follows all of its operands, in contrast to Polish notation (PN), which puts the operator before its operands. It is also known as postfix notation. It does not need any parentheses as long as each operator has a fixed number of operands. The description "Polish" refers to the nationality of logician Jan ukasiewicz, who invented (prefix) Polish notation in the 1920s._ (Wiki 26.02.2017 -> https://en.wikipedia.org/wiki/Reverse_Polish_notation) # Example code ``` 10 x = 0 a = 1 b = start : 1 x - x = a temp = b a = temp b + b = a PRINTLN start x JNZ Finished_The_Task! PRINTLN Result:__ PRINT a PRINTLN ``` This code example will calculate the 10th fibonacci number. Output: ``` 1 1 2 3 5 8 13 21 34 55 Finished_The_Task! Result:__55 ```

近期下载者

相关文件


收藏者