11. (30+35)*(30+25) = 3025

program exExhaustive11_1;
var
     f, s : integer;
begin
     for f := 10 to 99 do
         for s := 0 to 99 do
             if (s+f)*(s+f) = f*100+s then writeln(f*100+s);
     readln;
end.
posted @ 2010-01-01 21:07  SmartIOI  阅读(104)  评论(0)    收藏  举报
本站采用CC授权如需转载、引用文章,请务必附上作者及来源处。 Creative Commons License