# WordCount **Repository Path**: ackary/WordCount ## Basic Information - **Project Name**: WordCount - **Description**: 用java语言实现的对程序设计语言源文件统计字符数、单词数、行数 - **Primary Language**: Java - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2018-09-24 - **Last Updated**: 2023-04-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 下载wc.exe可执行文件和file.c文件存放在同一个目录之下,比如我存放在了F:\WC目录下,那么运行程序实现功能的时候需要在该文件夹下使用命令行参数如wc.exe -c file.c来统计文件file.c中的字符数,使用wc.exe -c file.c -o result.txt将统计结果输出到文件result.txt中,以此类推。