Post Reply 
[WP 34s] Another noobie question about programming
06-14-2015, 04:28 PM
Post: #2
RE: [WP 34s] Another noobie question about programming
I see various ways to accomplish this:

1. You can just type the number into your program:

LBL 00
1
5
0
0
+
1/x
RTN

2. If your number is a multiple of 10 use:

LBL 00
# 150
SDL 1
+
1/x
RTN

3. The most flexible approach uses register 00 to hold a:

LBL 00
RCL+ 00
1/x
RTN

Marcus von Cube
Wehrheim, Germany
http://www.mvcsys.de
http://wp34s.sf.net
http://mvcsys.de/doc/basic-compare.html
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: [WP 34s] Another noobie question about programming - Marcus von Cube - 06-14-2015 04:28 PM



User(s) browsing this thread: 1 Guest(s)