I find the porblem!!
Note: the (i) is typed with brackets to prevent the system to convert the below text into italics
{==>} means the parts I have amended...
複製內容到剪貼板
代碼:
program compareans;
var
savestudentans:array[1..4,1..4] of string;
savemodalans:array[1..4] of char;
studentans:string;
modalans:char;
i,j:integer;
file1,file2:text;
begin
assign(file1,'C:\s.txt');
assign(file2,'C:\stu.txt');
reset(file1);
reset(file2);
while not eof(file1) do
begin
for i:= 1 to 4 do
readln(file1,modalans);
{==>}savemodalans[(i)]:=modalans;
end;
while not eof(file2) do
begin
for i:= 1 to 4 do
for j:= 1 to 4 do
readln(file2,studentans);
{==>}savestudentans[i,j]:=studentans[(i)];
end;
for i:= 1 to 4 do
for j:= 1 to 4 do
{==>}if savemodalans[(i)]=savestudentans[i,j] then
writeln('good')
{==>}else writeln('bad');
close(file1);
close(file2);
readln
end.
[
本帖最後由 arararchchch 於 2008-10-20 18:02 編輯 ]