SUNWesu
L means a letter a-z,
- E
- means an expression: a (mathematical or logical) value, an operand that takes a value, or a combination of operands and operators that evaluates to a value,
S means a statement.
Enclosed in /* and */.
Simple variables: L.
Array elements: L [ E ] (up to BC_DIM_MAX dimensions).
The words ibase, obase (limited to BC_BASE_MAX), and scale (limited to BC_SCALE_MAX).
Arbitrarily long numbers with optional sign and decimal point.
Strings of fewer than BC_STRING_MAX characters, between double quotes (").
( E )
- sqrt ( E )
- Square root
- length ( E )
- Number of significant decimal digits.
- scale ( E )
- Number of digits right of decimal point.
- L ( E , ... , E )
- + - * / % ^
- (% is remainder; ^ is power)
- ++ --
- (prefix and postfix; apply to names)
- == <= >= != < >
- = =+ =- =* =/ =% =^
E
{ S ;... ; S }
if ( E ) S
while ( E ) S
for ( E ; E ; E ) S
null statement
break
quit
define L ( L ,..., L ) {
auto L ,..., L
S ;... S
return ( E )
}
Bessel function
- s(x)
- sine
- c(x)
- cosine
- e(x)
- exponential
- l(x)
- log
- a(x)
- arctangent
- j(n,x)
All function arguments are passed by value.
The value of a statement that is an expression is printed unless the main operator is an assignment. Either semicolons or new-lines may separate statements. Assignment to scale influences the number of digits to be retained on arithmetic operations in the manner of dc. Assignments to ibase or obase set the input and output number radix respectively.
The same letter may be used as an array, a function, and a simple variable simultaneously. All variables are global to the program. auto variables are stacked during function calls. When using arrays as function arguments or defining them as automatic variables, empty square brackets must follow the array name.
x=$(printf "%s\n" ’scale = 10; 104348/33215’ | bc)
Defines a function to compute an approximate value of the exponential function:
scale = 20 define e(x){ auto a, b, c, i, s a = 1 b = 1 s = 1 for(i=1; 1==1; i++){ a = a*x b = b*i c = a/b if(c == 0) return(s) s = s+c } }
Prints approximate values of the exponential function of the first ten integers:
for(i=1; i<=10; i++) e(i)or
for (i = 1; i <= 10; ++i) { e(i)
}
The for statement must have all three expressions (E’s).