code source de la fonction pow?

H

hoangnc

Guest
Je dois écrire une fonction comme pow (double pow (double x, double y)).Quiconque a ce code source?

 
pow est la fonction math!Dans la bibliothèque standard, il ya son prototype!

 
Si vous avez vraiment besoin ...Vous pouvez utiliser ce fait:

X ^ Y <=> e ^ (ln (X ^ Y)) <=> e ^ (Y * ln (X))

PASCAL / DELPHI:

fonction Pow (aBasis: longint; aExponent: byte): longint;
Pow commencer: = trunc (Exp (aExponent * Ln (aBasis))); end;

TIHI

<img src="http://www.edaboard.com/images/smiles/icon_cool.gif" alt="Cool" border="0" />
 

Welcome to EDABoard.com

Sponsor

Back
Top