Ответы
Ответ дал:
0
var
a: word;
b, c, d: byte;
begin
readln(a);
b := a mod 10;
c := a div 10 mod 10;
d := a div 100;
writeln(b, ' ', c, ' ', d);
if ((b in [c, d]) or (c in [b, d]) or (d in [b, c])) then
writeln('Yes, there are')
else
writeln('No, there aren"t');
end.
a: word;
b, c, d: byte;
begin
readln(a);
b := a mod 10;
c := a div 10 mod 10;
d := a div 100;
writeln(b, ' ', c, ' ', d);
if ((b in [c, d]) or (c in [b, d]) or (d in [b, c])) then
writeln('Yes, there are')
else
writeln('No, there aren"t');
end.
Вас заинтересует
2 года назад
2 года назад
8 лет назад
10 лет назад
10 лет назад
10 лет назад