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,959 questions

51,901 answers

573 users

How to calculate the average of an array of double values in Pascal

2 Answers

0 votes
Program Example;
    function Average(arr: array of double): double;
    var
        sum: double;
        i, len: integer;
    begin
        sum := 0;
        len := length(arr);
        if len > 0 then
            begin
                for i := low(arr) to high(arr) do
                    sum := sum + arr[i];
                sum := sum / len;
            end;
        Average := sum;
    end;
 
const
    arr: array [1..5] of double = (3.14, 8.0, 2.87, 5.982, 10.0);
begin
    writeln(Average(arr):7:5);
end.
 
 
 
 
(*
run:
  
5.99840
  
*)

 



answered Oct 17, 2022 by avibootz
edited Oct 17, 2022 by avibootz
0 votes
Program Example;
uses math;
 
const
    arr: array [1..5] of double = (3.14, 8.0, 2.87, 5.982, 10.0);
begin
    writeln(sum(arr)/length(arr):7:5);
end.
 
 
 
 
(*
run:
  
5.99840
  
*)

 



answered Oct 17, 2022 by avibootz
...