Uses GraphABC; var a,b,c:array[10..99] of integer; ast,bst,cst:string; i:integer; begin ast:='A:'; bst:='Б:'; cst:='В:'; for i:=10 to 99 do begin c[i]:=i; a[i]:=c[i]-i+random(50); b[i]:=c[i]-a[i]; ast:=ast+' '+inttostr(a[i]); bst:=bst+' '+inttostr(b[i]); cst:=cst+' '+inttostr(c[i]); end; setpencolor(clRed); line(0,0,150,0); line(150,0,75,50); line(75,50,0,0); rectangle(0,50,150,300); DrawTextCentered(0,50,150,300,ast); setpencolor(clYellow); line(150,0,300,0); line(300,0,225,50); line(225,50,150,0); rectangle(150,50,300,300); DrawTextCentered(150,50,300,300,bst); setpencolor(clGreen); line(300,0,450,0); line(450,0,375,50); line(375,50,300,0); rectangle(300,50,450,300); DrawTextCentered(300,50,450,300,cst); end.
vera4
01.04.2022
Const n=15; var a:array[1..n] of integer; i,j,k,t:integer; begin Randomize; Writeln('Исходный массив'); k:=1; for i:=1 to n do begin a[i]:=Random(99)+1; Write(a[i],' '); if a[i]>a[k] then k:=i end; Writeln; for i:=1 to k-2 do for j:=1 to k-2 do if a[j] > a[j+1] then begin t := a[j]; a[j] := a[j+1]; a[j+1] := t end; for i:=k+1 to n-1 do for j:=k+1 to n-1 do if a[j] < a[j+1] then begin t := a[j]; a[j] := a[j+1]; a[j+1] := t end; Writeln('Упорядоченный массив'); for i:=1 to n do Write(a[i],' '); end.
Ответить на вопрос
Поделитесь своими знаниями, ответьте на вопрос:
Як у середовищі текстового процесора форматувати векторні зображення?
var a,b,c:array[10..99] of integer;
ast,bst,cst:string;
i:integer;
begin
ast:='A:';
bst:='Б:';
cst:='В:';
for i:=10 to 99 do
begin
c[i]:=i;
a[i]:=c[i]-i+random(50);
b[i]:=c[i]-a[i];
ast:=ast+' '+inttostr(a[i]);
bst:=bst+' '+inttostr(b[i]);
cst:=cst+' '+inttostr(c[i]);
end;
setpencolor(clRed);
line(0,0,150,0);
line(150,0,75,50);
line(75,50,0,0);
rectangle(0,50,150,300);
DrawTextCentered(0,50,150,300,ast);
setpencolor(clYellow);
line(150,0,300,0);
line(300,0,225,50);
line(225,50,150,0);
rectangle(150,50,300,300);
DrawTextCentered(150,50,300,300,bst);
setpencolor(clGreen);
line(300,0,450,0);
line(450,0,375,50);
line(375,50,300,0);
rectangle(300,50,450,300);
DrawTextCentered(300,50,450,300,cst);
end.