主题:小儿科题,又来了,但还是不懂.
xsbccf
[专家分:20] 发布于 2006-08-03 11:06:00
4名专家分析4口油井,甲说:"2号井是最好的."乙说:"4号井是最好的."丙说:"3号井是最好的."丁说:"乙说错了."这4口井中只有1口井最好,4名专家中也只有1名专家说对了.哪一口井最好,哪一名专家说对?
回复列表 (共1个回复)
沙发
tbk [专家分:30] 发布于 2006-08-03 12:58:00
程序如下:
var i:integer;
begin
for i:=1 to 4 do
begin
if ord(i=2)+ord(i=4)+ord(i=3)+ord(i<>4)=1 then
begin
write (i);
if i=2 then write ('a')
else if i=4 then write ('b')
else if i=3 then write ('c')
else write ('d');
writeln;
end;
end;
end.
最后得到两组解。
我来回复