//PascalABC.NET //Версия 3.3, сборка 1611 begin write(range(ReadInteger('A='),ReadInteger('B=')).Where(x->x.IsEven).Sum()); end.
1 votes Thanks 0
Ленгит
Var a,b,s,i:integer; begin write('Введите начало отрезка: '); readln(a); write('Введите конец отрезка: '); readln(b); s:=0; for i:=a to b do begin if i mod 2 =0 then s:=s+i; end; write('Сумма четных чисел на отрезке: ',s); readln; end.
Answers & Comments
Verified answer
//PascalABC.NET//Версия 3.3, сборка 1611
begin
write(range(ReadInteger('A='),ReadInteger('B=')).Where(x->x.IsEven).Sum());
end.
begin
write('Введите начало отрезка: ');
readln(a);
write('Введите конец отрезка: ');
readln(b);
s:=0;
for i:=a to b do begin
if i mod 2 =0 then s:=s+i;
end;
write('Сумма четных чисел на отрезке: ',s);
readln;
end.