Ответы
Ответ дал:
0
var a, b, c: integer;
readln ( a );
c:=1;
while a> 0 then
begin
b:=a mod 10;
case b of
0,2,4,6,8: c:=c*b;
end;
a:=a div 10;
end;
writeln ( c );
ebd.
readln ( a );
c:=1;
while a> 0 then
begin
b:=a mod 10;
case b of
0,2,4,6,8: c:=c*b;
end;
a:=a div 10;
end;
writeln ( c );
ebd.
Вас заинтересует
2 года назад
2 года назад
10 лет назад
11 лет назад