刘楚 发表于 2021-9-13 20:43:49

c 语言课后习题统计代码数

系统是mac 下面是我的代码 我的文件后缀是.c 但是每次运行都是显示零行代码...百度了一个多小时也没看出问题所在 求大佬拉我一把.{:5_99:}




//
//main.c
//代码统计
//
//Created by 就到这里了 on 2021/9/13
//

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

人造人 发表于 2021-9-13 21:26:22

代码没问题,你的文件名后缀真的是 .c 吗?
你是怎么运行的?截图看看

刘楚 发表于 2021-9-13 23:37:43

截图来了

人造人 发表于 2021-9-14 16:17:50

刘楚 发表于 2021-9-13 23:37
截图来了

你是怎么运行的?截图看看
还有,回复我的时候要点 “回复”,你直接在你发的帖子下面回复我,我是没有通知的,我不知道你回复了我

刘楚 发表于 2021-9-14 19:21:24

@人造人运行截图来了

刘楚 发表于 2021-9-14 19:22:32

人造人 发表于 2021-9-14 16:17
你是怎么运行的?截图看看
还有,回复我的时候要点 “回复”,你直接在你发的帖子下面回复我,我是没有 ...

运行截图来了

人造人 发表于 2021-9-14 20:41:35

刘楚 发表于 2021-9-14 19:22
运行截图来了

首先要排除你代码不对的问题
直接复制这个代码看看行不行
#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;
}

人造人 发表于 2021-9-14 20:43:10

然后再复制这个代码,看看输出了什么
#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()
{
      system("pwd");
      
      char path = ".";

      printf("计算中...\n");

      findAllDirs(path);

      printf("目前你总共写了 %ld 行代码!\n\n", total);

      return 0;
}

刘楚 发表于 2021-9-14 22:25:55

人造人 发表于 2021-9-14 20:41
首先要排除你代码不对的问题
直接复制这个代码看看行不行

这个也不行

刘楚 发表于 2021-9-14 22:26:59

人造人 发表于 2021-9-14 20:43
然后再复制这个代码,看看输出了什么

这是运行截图 会不会是我系统问题

人造人 发表于 2021-9-14 23:04:11

刘楚 发表于 2021-9-14 22:26
这是运行截图 会不会是我系统问题

不是系统问题,问题已经找到了
你的 main.c 文件是放在哪里的?我想应该不是这个目录吧?
把 main.c 文件复制一份,放在这里, main.c 的程序内容就是计算当前目录(就是程序中 pwd 指令输出的那个目录)下面的所有 .c 文件的总行数

人造人 发表于 2021-9-14 23:05:42

你去这个目录下面看一看,这个目录下面应该没有 .c 文件,所以程序输出的是 0 行

刘楚 发表于 2021-9-15 11:04:46

人造人 发表于 2021-9-14 23:04
不是系统问题,问题已经找到了
你的 main.c 文件是放在哪里的?我想应该不是这个目录吧?
把 main.c 文 ...

感谢大佬感谢大佬{:5_100:}
页: [1]
查看完整版本: c 语言课后习题统计代码数