C第一节课课后题统计代码行数的这个程序只统计这个一个文件的吗?
#include <stdio.h>#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys / stat.h>
#定义MAX 256
总长
int countLines(const char *文件名);
int isCode(const char *文件名);
无效findAllDirs(const char * path);
int countLines(const char *文件名)
{
文件* fp;
int count = 0;
温度
如果((fp = fopen(文件名,“ r”))== NULL)
{
fprintf(stderr,“无法打开文件:%s \ n”,文件名);
返回0;
}
而((temp = fgetc(fp))!= EOF)
{
如果(temp =='\ n')
{
数++;
}
}
fclose(fp);
返回计数;
}
int isCode(const char *文件名)
{
整数长度
长度= strlen(文件名);
如果(!strcmp(文件名+(长度-2),“ .c”))
{
返回1;
}
其他
{
返回0;
}
}
无效findAllDirs(const char * path)
{
DIR * dp;
struct dirent * entry;
struct stat statbuf;
如果((dp = opendir(path))== NULL)
{
fprintf(stderr,“%s路径错误!\ n”,路径);
返回;
}
chdir(路径);
而((entry = readdir(dp))!= NULL)
{
lstat(entry-> d_name,&statbuf);
if(!strcmp(“。”,entry-> d_name)||!strcmp(“ ..”,entry-> d_name))
继续;
如果(S_ISDIR(statbuf.st_mode))
{
findAllDirs(entry-> d_name);
}
其他
{
如果(isCode(entry-> d_name))
{
总数+ = countLines(entry-> d_name);
}
}
}
chdir(“ ..”);
closeir(dp);
}
int main()
{
char path =“。”;
printf(“计算中... \ n”);
findAllDirs(path);
printf(“目前你总共写了%ld行代码!\ n \ n”,总计);
返回0;
} 当然是统计所有符合要求的文件。 我记得小甲鱼说可以看自己十万行代码,但是我之后写了别的程序之后运行还是这一个程序的行数,是为什么呢? ba21 发表于 2019-12-19 10:37
当然是统计所有符合要求的文件。
那为什么之后写程序再编译运行不计算在内呢,是有文件统计范围吗,我这个程序单独mkdir了一个文件夹?顺便麻烦问一下怎么上传图片啊,我点图片只有相册和网络图片,没有本地的。
supermly 发表于 2019-12-19 11:28
那为什么之后写程序再编译运行不计算在内呢,是有文件统计范围吗,我这个程序单独mkdir了一个文件夹?顺 ...
发现了发送图片好像是等级不够。。。 supermly 发表于 2019-12-19 11:28
那为什么之后写程序再编译运行不计算在内呢,是有文件统计范围吗,我这个程序单独mkdir了一个文件夹?顺 ...
统计范围肯定是有。.c.cpp.pas .py .php .java等等这些扩展名不都是源代码文件。
代码怎么写是你自己的事。统计范围当然是根据文件的扩展名来确定 ba21 发表于 2019-12-19 12:31
统计范围肯定是有。.c.cpp.pas .py .php .java等等这些扩展名不都是源代码文件。
代码怎么写是你自 ...
才发现复制的代码有些是浏览器翻译成汉字的,我在下一楼发没有翻译的。请问一下这个程序的统计范围是怎样的呢,我看这里统计的应该是.c的文件,是在哪些范围内找.c的文件呢?是不是必须在同一个文件夹下?新学看不太懂这个程序,麻烦了。
int isCode(const char *filename)
{
int length;
length = strlen(filename);
if (!strcmp(filename + (length - 2), ".c"))
{
return 1;
}
else
{
return 0;
}
} #include <stdio.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#define MAX 256
long total;
int countLines(const char *filename);
int isCode(const char *filename);
void findAllDirs(const char *path);
int countLines(const char *filename)
{
FILE *fp;
int count = 0;
int temp;
if ((fp = fopen(filename, "r")) == NULL)
{
fprintf(stderr, "Can not open the file: %s\n", filename);
return 0;
}
while ((temp = fgetc(fp)) != EOF)
{
if (temp == '\n')
{
count++;
}
}
fclose(fp);
return count;
}
int isCode(const char *filename)
{
int length;
length = strlen(filename);
if (!strcmp(filename + (length - 2), ".c"))
{
return 1;
}
else
{
return 0;
}
}
void findAllDirs(const char *path)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
if ((dp = opendir(path)) == NULL)
{
fprintf(stderr, "The path %s is wrong!\n", path);
return;
}
chdir(path);
while ((entry = readdir(dp)) != NULL)
{
lstat(entry->d_name, &statbuf);
if (!strcmp(".", entry->d_name) || !strcmp("..", entry->d_name))
continue;
if (S_ISDIR(statbuf.st_mode))
{
findAllDirs(entry->d_name);
}
else
{
if (isCode(entry->d_name))
{
total += countLines(entry->d_name);
}
}
}
chdir("..");
closedir(dp);
}
int main()
{
char path = ".";
printf("计算中...\n");
findAllDirs(path);
printf("目前你总共写了 %ld 行代码!\n\n", total);
return 0;
} supermly 发表于 2019-12-19 14:53
才发现复制的代码有些是浏览器翻译成汉字的,我在下一楼发没有翻译的。请问一下这个程序的统计范围是怎样 ...
我把程序移到上层文件夹就可以统计了,谢谢,以后能看懂了我再慢慢研究
页:
[1]