我需要可以识别文本中最大值的程序。首先在其中流式传输一个文本文件,然后
我逐个字符地获取信息,但无论是否为正方形,都无法进行计算和结果。如果是正方形,则给出sample.txt坐标中的数字。
setup:-process('sample.txt').
process(File) :-
open(File, read, In),
get_char(In, Char1),
process_stream(Char1, In),
close(In).
process_stream(end_of_file, _) :- !.
process_stream(Char, In) :-
get_char(In, Char2),
look(Char,Char2),
process_stream(Char2, In).