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

51,776 answers

573 users

How to sort a numeric array in descending order with Pascal

1 Answer

0 votes
program SortArrayDescending;

uses crt;

var
  arr: array[1..10] of integer;
  i: integer;

{ Bubble Sort in descending order }
procedure SortDescending(var arr: array of integer);
var
  i, j, temp: integer;
begin
  for i := 0 to High(arr) - 1 do
    for j := i + 1 to High(arr) do
      if arr[i] < arr[j] then
      begin
        temp := arr[i];
        arr[i] := arr[j];
        arr[j] := temp;
      end;
end;

begin
  clrscr;

  { Initialize the array with some values }
  arr[1] := 10;
  arr[2] := 4;
  arr[3] := 3;
  arr[4] := 7;
  arr[5] := 5;
  arr[6] := 6;
  arr[7] := 8;
  arr[8] := 1;
  arr[9] := 9;
  arr[10] := 2;

  SortDescending(arr);

  for i := 1 to 10 do
    write(arr[i], ' ');
end.


(*
run:

10 9 8 7 6 5 4 3 2 1 

*)

 



answered Feb 26, 2025 by avibootz

Related questions

1 answer 64 views
3 answers 82 views
3 answers 80 views
1 answer 69 views
1 answer 65 views
1 answer 70 views
...