level 2
var
a,b,c:integer;
begin
for a:=1 to 999 do
for b:=1 to 999 do
for c:=1 to 999 do
if a*a*a+b*b*b+c*c*c=100*a+10*b+c
then writeln(100*a+10*b+c);
end.
(7,30)Fatal, Syntax error,"Then" expected but"identifier B"found
2013年11月23日 10点11分
1
a,b,c:integer;
begin
for a:=1 to 999 do
for b:=1 to 999 do
for c:=1 to 999 do
if a*a*a+b*b*b+c*c*c=100*a+10*b+c
then writeln(100*a+10*b+c);
end.
(7,30)Fatal, Syntax error,"Then" expected but"identifier B"found