程序应接受文件名作为输入,然后打印三个数字显示:
我真的不知道从哪里开始这个问题。请帮忙。
答案 0 :(得分:4)
这是一个帮助您入门的伪代码。
open file handle
set counter_line=0
set counter_word=0
set counter_char=0
while iterate file
increment counter_line
split line into array
counter_word += length of split array
counter_char += length of line
end while
close file handle