📄 readme.txt
字号:
CCALC provides convenient way to for performing calculations. You can
use standard infix notation for expressions and store results in variables.
Input for this calculator are normal C expressions containing operators, float
or integer constants, variables and and references to previous results ($n).
Precedence and semantic of operators is the same as in C language. There are
two extra binary operators: >>> unsigned shift right and ** raising to power.
Type of variable (integer or float) depends on assigned value. All conversions
are done implicitly but there are two functions int() and float() to perform
explicit conversion. Initially all variables are assigned 0 value.
Calculator supports standard set of functions from C mathematics library and
also defines function prime(n) for the smallest prime number >= n, gcd(n,m) for
the greatest common divisor of n and m, and invmod(n,m) for inverse of n modulo m.
For integer expressions decimal, hexadecimal and octal outputs are produced.
Operators:
++ -- ! ~ unary + -
**
* / %
+ -
<< >> >>>
< <= > >=
== !=
&
^
|
= += -= *= /= %= <<= >>= >>>= &= |= ^= **=
Functions:
abs atan cosh float prime sqrt
acos atan2 exp log sin tan
asin cos int log10 sinh tanh
Type "exit" or "quit" to terminate program, "help" or "?" to show this text.
CCALC is freeware and is distributed in hope to be useful. Please submit bug
reports to the following e-mail address: knizhnik@altavista.net
Please visit my homepage for other freeware programming staff:
http://www.garret.ru/~knizhnik
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -