program Tin_hoc;
uses crt;
var n,i,j,min:integer;
a: array[1..100] of integer;
begin
clrscr;
write('Nhap n: ');readln(n);
writeln('Nhap ',n,' phan tu:');
for i:= 1 to n do begin write('a[',i,']: '); readln(a[i]) end;
for i:= 1 to n do begin
min:=a[i];
If a[i] >0 then for j:= i to n do if a[j] < a[i] then min:= a[j];
write(min,' ') end;
for i:= 1 to n do begin
min:=a[i];
If a[i] <0 then for j:= i to n do if a[j] < a[i] then min:= a[j];
write(min,' ') end;
readln;
end.
Mik ko có thời gian nên chỉ làm thử câu a
Sai thì thôi nha