電(E) -Lite-
C language like operation calculator.
site:2009.09.24 Up
download from here |
<Information>>>
“Version1.1” was open to the public.
– Action of problems of number of maximum display digits when decimal is displayed.
– [+/-] Pressing operation problem action.
– Binary number, decimal number, and hexadecimal number switch operation problem action.
<<<
・Common keys of arithmetic operation and bit operation.
[Del] : Delete of 1 digit or operator.
[CLR] : Clear result.
[=] : Displays result.
・Arithmetic operator keys
[+] : Add operator
[-] : Subtract operator
[x] : Multiply operator
[÷] : Divide operator
[%] : Modulo operator
・bit operator keys
[&] : AND operator
[|] : OR operator
[^] : EXCLUSIVE OR operator
[~] : Tilde(NOT) operator
[<<] : Left shift operator
[>>] : right shift operator
Example of arithmetic operation:
– To calculate ( 1 + 2 ) * 3 do the following
- select [Dec] mode
- press [1]
- press [+]
- press [2]
- press [x]
- press [3]
- press [=]
– To calculate 7 mod 3 do the following
- select [Dec] mode
- press [7]
- press [%]
- press [3]
- press [=]
Example of bit operation:
– To Calculate 0000 0011 AND 0000 0101 do th following
- select [Bin] mode
- press [1][1]
- press [&]
- press [1][0][1]
- press [=]
– To calculate 0A OR 07 do the following
- select [Hex] mode
- press [A]
- press [|]
- press [7]
- press [=]
– To calculate NOT 0000 0011 do the following
- select [Bin] mode
- press [1][1]
- press [~]
- press [=]
– To calculate 0000 0011 left 2bit shift do the following
- select [Bin] mode
- press [1][1]
- press [<<]
- select [Dec] mode
- press [2]
- press [=]
- press [i]
- Prease select Back Image, Sound or Website.
- press [Done]