Ответ:
for p in 6..36
for n in 1..(p-1)
a1 = "33" + (p-1).to_s(p) + "5" + n.to_s(p)
a2 = "2" + n.to_s(p) + "443"
sum = (a1.to_i(p) + a2.to_i(p)).to_s(p)
if sum == "55424"
puts a1 + " + " + a2 + " = " + sum + "|" + p.to_s() + "|" + n.to_s()
end
33651 + 21443 = 55424| p=7 | n=1 | m=6
Подробнее - на Znanija.com - znanija.com/task/3305682#readmore
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
for p in 6..36
for n in 1..(p-1)
a1 = "33" + (p-1).to_s(p) + "5" + n.to_s(p)
a2 = "2" + n.to_s(p) + "443"
sum = (a1.to_i(p) + a2.to_i(p)).to_s(p)
if sum == "55424"
puts a1 + " + " + a2 + " = " + sum + "|" + p.to_s() + "|" + n.to_s()
end
end
end
33651 + 21443 = 55424| p=7 | n=1 | m=6
Подробнее - на Znanija.com - znanija.com/task/3305682#readmore
Объяснение: