-1

程序应该接受文件名作为输入,然后打印三个数字,显示:

  1. 行数
  2. 字数
  3. 文件中的字符数。

我真的不知道从哪里开始这个问题。请帮忙。

4

1 回答 1

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
于 2011-03-30T00:27:33.680 回答