В программе описан одномерный целочисленный массив с индексами от 0 до 9. В массиве находились числа 3, 2, 4, 6, 3, 10, 12, 14, 16, 18. Чему будет равно значение переменной с после выполнения данной программы:
c := 0;
for i := 1 to 8 do
if A[i] = A[0] then
begin
c:=c+1;
t:=A[i+1];
A[i+1]:= A[i];
A[i]:= t;
end;
writeln(c);
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.