- This wiki is out of date, use the continuation of this wiki instead
Pow
From FenixWiki
(Difference between revisions)
Revision as of 14:33, 27 May 2007
Contents |
Definition
FLOAT pow ( <FLOAT base> , <FLOAT power> )
Returns base to the power of power (base^power).
Parameters
| FLOAT base | - The base. |
| FLOAT power | - The power. |
Returns
FLOAT : base to the power of power (base^power).
Example
Program powerful;
Global
float value1;
int value2;
Begin
write_float(0,0, 0,0,&value1);
write_int(0,0,10,0,&value2);
value1 = pow(2.3,4.6);
value2 = pow(2,3);
Repeat
frame;
Until(key(_esc))
End
Used in example: write_float(), write_int(), key()
