erjorgito
11-18-2011, 03:21 PM
Hello, we're learning Arrays and im stuck on how to return the actual number of the array. The code i have so far is below :
program Project1;
uses
crt;
var
myArray : array[1..5] of integer;
MinValue, MaxValue, I: Integer;
a : real;
begin
for i:= 1 to 5 do
begin
writeln('Please enter a value');
readln(myArray[i]);
end;
MinValue:=myArray[1];
MaxValue:=myArray[1];
for i:= 1 to 5 do
if myArray[i] > MaxValue then
begin
MaxValue:=myArray[i];
end;
if myArray[i] < MinValue then
begin
MinValue:=myArray[i];
end;
writeln(MinValue, MaxValue);
readln();
end.
I want to say, the minvalue comes from Array X, but do not know how, can anyone help please?
Thanks
program Project1;
uses
crt;
var
myArray : array[1..5] of integer;
MinValue, MaxValue, I: Integer;
a : real;
begin
for i:= 1 to 5 do
begin
writeln('Please enter a value');
readln(myArray[i]);
end;
MinValue:=myArray[1];
MaxValue:=myArray[1];
for i:= 1 to 5 do
if myArray[i] > MaxValue then
begin
MaxValue:=myArray[i];
end;
if myArray[i] < MinValue then
begin
MinValue:=myArray[i];
end;
writeln(MinValue, MaxValue);
readln();
end.
I want to say, the minvalue comes from Array X, but do not know how, can anyone help please?
Thanks