dmc*_*kee 16
从这个网页(为了csh和衍生品,因为你问):
% @ x = (354 - 128 + 52 * 5 / 3)
% echo Result is $x
Result is 174
Run Code Online (Sandbox Code Playgroud)
和
% set y = (354 - 128 + 52 / 3)
% echo Result is $y
Result is 354 - 128 + 52 / 3
Run Code Online (Sandbox Code Playgroud)
注意不同的结果.
就个人而言,我坚持/bin/sh并致电awk或者某事(为了最大程度的便携性),或者其他人已经展示了这种bash方法.
你可以随时使用 python 解释器,它通常包含在 Linux 发行版中。
http://docs.python.org/tutorial/introduction.html#using-python-as-a-calculator
$ python
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)]
Type "help", "copyright", "credits" or "license" for more information.
>>> 2+2
4
>>> # This is a comment
... 2+2
4
>>> 2+2 # and a comment on the same line as code
4
>>> (50-5*6)/4
5
>>> # Integer division returns the floor:
... 7/3
2
>>> 7/-3
-3
>>> # use float to get floating point results.
>>> 7/3.0
2.3333333333333335
Run Code Online (Sandbox Code Playgroud)
等号('=')用于为变量赋值。之后,在下一个交互式提示之前不会显示任何结果:
>>> width = 20
>>> height = 5*9
>>> width * height
900
Run Code Online (Sandbox Code Playgroud)
当然,还有数学模块,可以满足您的大部分计算器需求。
>>> import math
>>> math.pi
3.1415926535897931
>>> math.e
2.7182818284590451
>>> math.cos() # cosine
>>> math.sqrt()
>>> math.log()
>>> math.log10()
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
48249 次 |
| 最近记录: |