home *** CD-ROM | disk | FTP | other *** search
- This program is a great exponent program. The differnce between
- this program and the regular Y^X program is that this allows you to
- find the answer to large exponents like, 231 ^ 320 which when you
- normally try finding an answer, it will give you an OVERFLOW error.
- This way it will give you the answer in scientific notation.
-
-
- Feel free to distribute but please dont take credit for yourself.
-
-
- Written by David Stinemetze
-
- NAME:YTOTHEX
- :ClrHome
- :Disp "Y^X"
- :Disp ""
- :Disp "Y"
- :Input Y
- :Disp "X"
- :Input X
- :(log Y)*X\->\E
- :Int E\->\B
- :10^(E-B)\->\B
- :(Int (B*100))/100\->\B
- :Disp B
- :Disp " *10^"
- :Int E\->\E
- :Disp E
- :End