Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,973 questions

51,917 answers

573 users

How to implement the power function in Pascal

1 Answer

0 votes
program PowerCalculation;

function MyPow(baseValue: Double; exponent: Integer): Double;
var
  result: Double;
begin
  result := 1;

  while exponent > 0 do
  begin
    if (exponent and 1) = 1 then
      result := result * baseValue;

    exponent := exponent shr 1;
    baseValue := baseValue * baseValue;
  end;

  MyPow := result;
end;

begin
  WriteLn(MyPow(2, 3):0:2);  
  WriteLn(MyPow(3, 3):0:2);  
  WriteLn(MyPow(3, 2):0:2);  
  WriteLn(MyPow(2, 2):0:2);  
  WriteLn(MyPow(5.0, 2):0:2);  
  WriteLn(MyPow(-2, 4):0:2); 
end.



(*
run:

8.00
27.00
9.00
4.00
25.00
16.00

*)

 



answered Jun 11, 2025 by avibootz
edited Jun 11, 2025 by avibootz
...