如何创建字数统计程序?

该程序应接受文件名作为输入,然后打印三个数字显示: 行数 单词的数量 文件中的字符数。 我真的不知道从哪里开始这个问题。请帮忙。     
已邀请:
这是一个帮助您入门的伪代码。
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
    

要回复问题请先登录注册