выберите номер фрагмента программы, выполняющего такие же действия, что и приведенный ниже
for i:=1 to 5 do begin x:=x+2*i;
x:=x+1;
end;

1) while i<5 do begin x:=x+2*i;
x:=x+1;
i:=i+1;
end;

2) while i<= 5 do begin x:=x+2*i;
x:=x+1;
end;

3) i:=1;
while i<=5 do begin x:=x+2*i;
x:=x+1;
i:=i+1;
end;
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.