delphi中有没有求一个数的n次方的函数

 我来答
永恒pascal
2016-12-06 · TA获得超过4357个赞
知道大有可为答主
回答量:3902
采纳率:93%
帮助的人:685万
展开全部

在free pascal中有个power函数,在delphi的标准函数中没有,其实求x^n可以用exp(n*ln(x))替代 !

procedure TForm1.Button1Click(Sender: TObject);
begin
      showmessage(floattostr(exp(2*ln(2.1))));
end;

end.


或者在前面的uses子句中加入 math 单元,这是可以使用power函数:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls,math;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
      showmessage(floattostr(exp(3*ln(2.1))));
      showmessage(floattostr(power(2.1,3)));
end;

end.
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式