Какая строка пропущена в описанной части программы для сортировки элементов массива а по невозрастанию? repeat
p:=true;
for i:=1 to n-1 do
...
then begin
p:=false;
k:=a[i];
a[i]:=a[i+1];
a[i+1]:=k;
end;
until p;

Варианты ответов
if a[i]>a[i+1]
if i
if a[i]
if i>a[i] ​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2025 SCHOLAR.TIPS - All rights reserved.