推介:| 調解員課程 | Makeup Course | Hypnosis course | English course | NLP training | cissp cisa cism | 營養學課程 |

發新話題
打印

Pascal 問題,希望各大大幫手,感激無限!!!!

Pascal 問題,希望各大大幫手,感激無限!!!!

我想對兩個file  的 mc ans  分別係
file1(modal ans)                               file2(student ans)
abcd                                                 badb
                                                         aadd
                                                         bbcc
                                                         accc
第一條正確ans 係a 第二條 係 b....   右手面係4個學生,一人4條mc
如果岩左會有good  錯左會write bad
段code 如下,唔知咩事run 唔到
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:=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;
end;
for i:= 1 to 4 do
for j:= 1 to 4 do
if savemodalans=savestudentans[i,j] then
writeln('good');
if savemodalans<> savestudentans[i,j]
then writeln('bad');
close(file1);
close(file2);
readln
end.


[ 本帖最後由 我要破紀錄 於 2008-10-18 12:21 編輯 ]

TOP

引用:
原帖由 我要破紀錄 於 18-10-2008 11:50 發表
我想對兩個file  的 mc ans  分別係
file1(modal ans)                               file2(student ans)
abcd                                                 badb
                                        ...
又多一位應屆會考生... (我都係,交左功課la~~)

Do you mean there is run-time error / logic error / syntax error??


相關搜索目錄: 功課

TOP

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 編輯 ]

TOP

modalans是個char類型的變數.
readln只會把s.txt的第一個字元放進modalans.
然後從while廻圈跳出.
IT代工/鎗手一名!
小弟並唔平, 但絕唔係貴!

TOP

發新話題


重要聲明:本討論區是以即時上載留言的方式運作,本網站對所有留言的真實性、完整性及立場等,不負任何法律責任。而一切留言之言論只代表留言者個人意見,並非本網站之立場,用戶不應信賴內容,並應自行判斷內容之真實性。於有關情形下,用戶應尋求專業意見(如涉及醫療、法律或投資等問題)。由於本討論區受到「即時上載留言」運作方式所規限,故不能完全監察所有留言,若讀者發現有留言出現問題,請聯絡我們。本討論區有權刪除任何留言及拒絕任何人士上載留言,同時亦有不刪除留言的權利。切勿撰寫粗言穢語、誹謗、渲染色情暴力或人身攻擊的言論,敬請自律。本網站保留一切法律權利。


Copyright 1997- Xocat. All Right Reserved.