Post Reply 
Phi Function
07-21-2015, 09:06 PM (This post was last modified: 07-21-2015 09:07 PM by salvomic.)
Post: #2
RE: Phi Function
(07-21-2015 08:39 PM)douganc Wrote:  Hello,
Can anyone tell me where I am going wrong in this Program?

It's purpose is to display the value of Phi to 50 Decimal Places
When "phi()" is typed on the home screen.

Here is the program:

#cas
phi():=BEGIN
//
...

hi,
first detach BEGIN after the :=
Code:

#cas
phi():=
BEGIN
//
LOCAL x;
x:=(1.61803398874989484820458683436563811772030917980576);
RETURN(x);
//
END;
#end

after this you won't have that error, but
1.61803398875.
then the rest...

For "all dec" output see here.

Salvo

∫aL√0mic (IT9CLU) :: HP Prime 50g 41CX 71b 42s 39s 35s 12C 15C - DM42, DM41X - WP34s Prime Soft. Lib
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Phi Function - douganc - 07-21-2015, 08:39 PM
RE: Phi Function - salvomic - 07-21-2015 09:06 PM
RE: Phi Function - douganc - 07-21-2015, 11:28 PM
RE: Phi Function - Gerald H - 07-22-2015, 05:24 AM
RE: Phi Function - douganc - 07-22-2015, 08:58 AM



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