[futurebasic] Re: Website development

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : March 1998 : Group Archive : Group : All Groups

From: tedd <tedd@...>
Date: Thu, 12 Mar 1998 08:03:03 -0400
>Use your time to make money :-)
>
>
>Question:
>How do i get the CUBE ROOT of a number with FBII ?
>For example, the cube root of 1220.3  =  10.69
>I can't find an answer in the Reference manual.
>
>Sorry, i'm bad at maths.
>
>SG

SG:

Okay, I'll use my time to make money. This is the solution to your problem.
That will be $50.

---

WINDOW 1, "test",(0,0)-(600,300),_doc

DIM x#
DIM y#
DIM z#
DIM a$

x# = 1220.3
y# = 3
z# = x#^(1/y#)

PRINT "The answer is = ";z#

INPUT "Press any key to end";a$

END

---

Just kidding.

tedd

___________________________________________________________________
<mailto:tedd@...>	               http://sperling.com/