Post Reply 
(11C) Random Move
01-06-2019, 08:37 AM (This post was last modified: 01-06-2019 03:31 PM by Dieter.)
Post: #8
RE: (11C) Random Move
(01-06-2019 04:25 AM)Gamo Wrote:  The reason I use 10 ENTER 10 Y^X is due to the number display on screen.
I'm noticed that when use EEX 10 the result on screen shown exponents but
what I want is a full digits show on screen.

?!? – what exactly is the problem? The way a number is displayed does not depend on the way it is entered or calculated. It does not matter if the value 1010 is generated by EEX 10, 10 ENTER y^x, 10 10x, EEX 5 x² or whatever way you choose.

The display is always the same.
Assuming FIX 4 mode:

Code:
10 [ENTER] 10 [y^x]  1,0000     10
9 [1/x] [x]          1.111.111.111

10 [10^x]            1,0000     10
9 [÷]                1.111.111.111

[EEX] 10 [ENTER]     1,0000     10
9 [÷]                1.111.111.111

Even if the display really was different: it doesn't matter. The value 1010 is never displayed! The first time a number is displayed in your program is at the end of routine A: RCL 1 RTN (which shows 1.111.111.111). The only other output is shown with the PSE in routine B (which displays 1.111.181.111 etc.). So where do you see a problem?

Code:
LBL A
EEX
1
0
STO 1
9
STO÷1
...

Dieter
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
(11C) Random Move - Gamo - 01-03-2019, 08:55 AM
RE: (11C) Random Move - Dieter - 01-04-2019, 08:28 PM
RE: (11C) Random Move - rprosperi - 01-04-2019, 11:16 PM
RE: (11C) Random Move - Thomas Klemm - 01-05-2019, 03:43 AM
RE: (11C) Random Move - rprosperi - 01-05-2019, 03:58 AM
RE: (11C) Random Move - Gamo - 01-06-2019, 04:25 AM
RE: (11C) Random Move - Dieter - 01-06-2019 08:37 AM
RE: (11C) Random Move - Thomas Klemm - 01-06-2019, 06:55 AM
RE: (11C) Random Move - Thomas Klemm - 01-06-2019, 07:51 PM



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