Ответ(ы) на вопрос:
Гость
Program n1;
const n=100;
var a: array [1..n] of integer;
i,sum: integer;
begin
sum:=0;
for i:=1 to n do
begin
readln(a[i]);
if (a[i]=0) or (a[i]>300) then break;
if (a[i] mod 6=0) and (a[i] mod 10=6) then sum:=sum+a[i];
end;
writeln(sum);
end.
Не нашли ответ?
Похожие вопросы