如何着手创建字数统计程序?

发布于 2024-10-28 01:58:35 字数 122 浏览 1 评论 0原文

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

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

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

The program should accept file names as input and then print three numbers showing:

  1. the count of lines
  2. count of words words
  3. count of characters in the file.

Im really not sure where to start on this question. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女 2024-11-04 01:58:35

这里有一个伪代码可以帮助您入门。

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

here's a pseudo-code to help you get started.

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文