var a:array[1..8]of integer;
i,s:integer;
begin
for i:=1 to 8 do begin
readln(a[i]);
if i mod 2 = 0 then s:=s+a[i];
end;
writeln(s/4);
end.
Ответ:
1)10
2) 1 раз
3)
Begin
Readln(n);
S:=0;
For i:=1 to n do
S:=s+i;
Write(s);
End.
4)
I:=1001;
While (i<10000) do
I:=i+7;
Writeln(i);
End;