Из города А в город К насчитала 13 различных путей.
Ответ: 13
Function func32725655(i As String)
Dim str() As String, j, zero_one(2) As Integer
zero_one(0) = 0: zero_one(1) = 1
str = Split(i, 0)
j = UBound(str, 1)
i = i & zero_one(j Mod 2)
func32725655 = i
End Function
Excel VBA
Var a,s:integer;
begin
read(a);
while a<>0 do
begin
if (a>=10)and(a<=99)and(a mod 8 = 0) then s:=s+a;
read(a);
end;
writeln(s);
<span>end.
Пример:
123 16 468 87 12 88 536 0
<span>104</span></span>