до н.э.
bc
и dc
2 калькулятора, которые я буду часто использовать при необходимости доступа с терминала.
Примеры
$ bc
bc 1.06.95
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
Затем вы можете ввести свои вопросы:
2
2
5+5
10
Когда вы закончите, вы можете выйти с Ctrl+ C.
Тест-драйв
Эти калькуляторы довольно многофункциональны.
пересчет
scale=5
193 * 1/3
64.33333
уравнения
principal=100
ir = 0.05
years = 5
futurevalue = principal * (1 + ir)^years
futurevalue
127.62800
ваши примеры
8*6-4
44
8*(6-4)
16
известково
Если вы хотите что-то более интерактивное, есть calc
.
пример
$ calc
C-style arbitrary precision calculator (version 2.12.4.4)
Calc is open software. For license details type: help copyright
[Type "exit" to exit, or "help" for help.]
; 10+10
20
; 8*6-4
44
; 8*(6-4)
16
;
Вы можете использовать стрелки вверх / вниз, чтобы пройти через прошлые команды, и он также имеет интерактивную справку.
; help
Дает вам это:
For more information while running calc, type help followed by one of the
following topics:
topic description
----- -----------
intro introduction to calc
overview overview of calc
help this file
assoc using associations
builtin builtin functions
command top level commands
config configuration parameters
custom information about the custom builtin interface
define how to define functions
environment how environment variables effect calc
errorcodes calc generated error codes
expression expression sequences
file using files
history command history
interrupt how interrupts are handled
list using lists
mat using matrices
...
Ссылки