Срочно, составьте пожалуйста блок-схему, вот по паскалю она решена сама задача звучит так: В каких двузначных числах удвоенная сумма цифр равна их произведению?var
a : integer;
b : integer;
begin
writeln(' Решение ');
for a:=1 to 9 do
for b:=1 to 9 do
begin
if (a+b)*2=a*b then 
writeln(a*10+b);
end;
end.
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2025 SCHOLAR.TIPS - All rights reserved.