from itertools import product
i = open('input.txt', 'r')
o = open('output.txt', 'w+')
l = int(i.
alpha = "245"
d = []
for s in product(alpha, repeat=l):
d.append([" ".join(
for q in d[1: ]:
s = " ".join(q)
if int(s.count('2')) > 2:
continue
o.write(" ".join(q) + '\n')
i.close()
o.close()
код к : «перевод кода с питона на паскаль»
var
n,c,i,ost,b,t,d: integer;
a,k: string;
begin
readln(n);
c: =1;
for i: =1 to n do
c: =c*3;
c: =c-1;
for i: =1 to c do
begin
k: ='';
b: =i;
t: =0;
while b> 0 do
begin
ost: =b mod 3;
if ost=0 then inc(t);
d: =(-sqr(ost)+5*ost+4)div 2;
str(d,a);
k: =a+k;
b: =b div 3;
end;
while length(k)do
begin
k: ='2'+k;
inc(t);
end;
if t< =2 then writeln(k);
end;
end.
Поделитесь своими знаниями, ответьте на вопрос:
Найти сумму цифр любого числа с string
program pr1; uses crt; var stroka,tmp: string; i,a,b,c: integer; beginclrscr; writeln('введите числа для сложения в форме a+b'); readln(stroka); i: =1; while stroka[i] in ['0'..'9'] do i: =i+1; tmp: =copy(stroka,1,i-1); delete(stroka,1,i); val(tmp,a,c); val(stroka,b,c); c: =0; c: =a+b; writeln(c); end.