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

51,766 answers

573 users

How to check if any value in a one-dimensional array a is larger than x in Pascal

1 Answer

0 votes
program CheckAnyLarger;

const
  N = 7;

type
  TIntArray = array[1..N] of Integer;

var
  arr: TIntArray = (3, 4, 7, 2, 9, 1, 8);
  x: Integer;
  i: Integer;
  found: Boolean;

begin
  x := 5;
  found := False;

  for i := 1 to N do
  begin
    if arr[i] > x then
    begin
      found := True;
      Break;
    end;
  end;

  if found then
    WriteLn('There is at least one value greater than ', x, '.')
  else
    WriteLn('No values are greater than ', x, '.');
end.



(*
run:

There is at least one value greater than 5.
 
*)

 



answered Jun 25, 2025 by avibootz
...