(11C) Base Conversion
|
01-19-2014, 06:45 PM
(This post was last modified: 06-15-2017 01:17 PM by Gene.)
Post: #1
|
|||
|
|||
(11C) Base Conversion
Description:
This program allows to convert numbers from one base to another. Register: Reg 1: from-base Reg 2: to-base Program: STO 0 RCL 1 RCL 2 - x<>y LBL 0 RCL 1 x<>y RCL 2 ÷ INT x=0 GTO 1 R↓ × R↓ × STO + 0 R↓ GTO 0 LBL 1 RCL 0 Examples: Dec - Bin Reg 1: 10 Reg 2: 2 21 - 10101 Hex - Dec Reg 1: 16 Reg 2: 100 0xCAFE = 12:10:15:14 12101514 - 51966 |
|||
06-21-2014, 10:21 PM
(This post was last modified: 06-21-2014 11:02 PM by Thomas Klemm.)
Post: #2
|
|||
|
|||
Base Conversion for HP-12C
Code: 01 - 44 0 STO 0 Example: 201410 → 37368 10 STO 1 8 STO 2 2014 R/S This is another solution that uses the function NPV: Code: 01 - 36 ENTER Example: 201410 → 37368 10 STO PMT 8 STO FV 2014 R/S |
|||
06-21-2014, 10:27 PM
Post: #3
|
|||
|
|||
Base Conversion for HP-17b/17bii
BC:ANS=
N+ (FROM-TO)\(\times\) \(\Sigma\)(I:0:LOG(N)\(\div\)LOG(TO):1: L(N:IDIV(N:TO))\(\times\)FROM^I ) Example: DEC → OCT Code: 2014 10 → FROM 8 → TO 2014 → N ANS |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)