wangishero 发表于 2021-8-7 15:29:57

带你学C带你飞S1E1

S1E1统计代码该怎么用。我编译运行后显示我总共写了0行代码。

青出于蓝 发表于 2021-8-7 15:36:35

发代码

wangishero 发表于 2021-8-7 15:38:34

#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;
}

wangishero 发表于 2021-8-7 15:39:07

代码是没错的,但是我不知道怎么运行

青出于蓝 发表于 2021-8-7 15:44:19

dev c++的话
F11

wangishero 发表于 2021-8-7 15:49:04

如何利用这段代码去统计其他代码的行数呢?

青出于蓝 发表于 2021-8-7 15:54:32

本帖最后由 青出于蓝 于 2021-8-7 15:56 编辑

这个程序只会统计后缀名为.c的程序(同一路径下)

wangishero 发表于 2021-8-7 15:54:41

我用的是Xcode

青出于蓝 发表于 2021-8-7 15:55:36

if (!strcmp(filename + (length - 2), ".c"))
看这里,这里只会匹配.c程序
例如
main.c 可以
main.cpp 不可以

wangishero 发表于 2021-8-7 16:08:18

嗯,我之前保存的代码是main.c
但我不知道怎么用这段代码去统计我写的其他代码的行数

青出于蓝 发表于 2021-8-7 18:49:02

wangishero 发表于 2021-8-7 16:08
嗯,我之前保存的代码是main.c
但我不知道怎么用这段代码去统计我写的其他代码的行数

把其他文件的后缀改为.c

青出于蓝 发表于 2021-8-7 18:50:08

2

wangishero 发表于 2021-8-7 16:08
嗯,我之前保存的代码是main.c
但我不知道怎么用这段代码去统计我写的其他代码的行数

这些文件必须在同一路径

wangishero 发表于 2021-8-7 19:06:02

其他文件的后缀是.c了,可是如何才能在同一路径,我试着把文件放在共同的文件夹里却还是不行

wangishero 发表于 2021-8-7 19:08:04

小甲鱼的视频里是在终端操作,可是我是直接在Xcode里编译运行的

青出于蓝 发表于 2021-8-7 20:13:12

wangishero 发表于 2021-8-7 19:08
小甲鱼的视频里是在终端操作,可是我是直接在Xcode里编译运行的

都一样!Xcode也可以,跟这个没关系
你运行结果是0,是因为同目录下没有.c后缀的文件,或者有但是空的

wangishero 发表于 2021-8-7 20:42:25

那怎么弄到同目录里
页: [1]
查看完整版本: 带你学C带你飞S1E1