Răspuns:
program min_max;
var x,y,z,min,max:integer;
begin
writeln('Introduceti numerele intregi x, y, z:');
readln(x, y, z);
min:=x; max:=x;
if y<min then min:=y;
if y>max then max:=y;
if z<min then min:=z;
if z>max then max:=z;
writeln('minimul este ',min);
writeln('maximul este ',max);
end.
Explicație:
succese!