隳太忆 发表于 2018-9-7 14:33:55

带你学c带你飞第一个课后作业计算代码行数,为什么我的结果是0行

复制粘贴的代码结果也是这样

隳太忆 发表于 2018-9-7 14:34:31


#include <io.h>
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX      256

long total;

int countLines(const char *filename);
void findAllCodes(const char *path);
void findALLFiles(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;
}

void findAllCodes(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath, target;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
      {
                do
                {
                        sprintf(target, "%s/%s", path, fa.name);
                        total += countLines(target);
                }while (_findnext(handle, &fa) == 0);
      }
   
      _findclose(handle);
}

void findALLDirs(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
      {
                fprintf(stderr, "The path %s is wrong!\n",path);
                return;
      }
   
      do
      {      
                if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                  
                if( fa.attrib == _A_SUBDIR)
                {      
                        sprintf(thePath, "%s/%s", path, fa.name);
                        findAllCodes(thePath);
                        findALLDirs(thePath);
                }
      }while (_findnext(handle, &fa) == 0);
   
      _findclose(handle);   
}

int main()
{
      char path = ".";
      
      printf("计算中...\n");
      
      findAllCodes(path);
      findALLDirs(path);
      
      printf("目前你总共写了 %ld 行代码!\n\n", total);
      system("pause");
      
      return 0;
}

crazy拖拖 发表于 2022-7-28 21:15:23

我也是这样,等你问题解决了跟我说一声呗

额外减小 发表于 2022-7-28 23:25:10

crazy拖拖 发表于 2022-7-28 21:15
我也是这样,等你问题解决了跟我说一声呗

我也是噢{:10_256:}

顶级太阳 发表于 2022-7-29 09:27:57

复制粘贴你的代码出来,否则没有人知道你的代码问题在哪里。

VIPMMI 发表于 2022-7-29 12:03:46

crazy拖拖 发表于 2022-7-28 21:15
我也是这样,等你问题解决了跟我说一声呗

复制对应系统的代码也许就可以解决问题 !我的是Windows用的dev-c++编译器正常运行

crazy拖拖 发表于 2022-7-29 13:34:20

VIPMMI 发表于 2022-7-29 12:03
复制对应系统的代码也许就可以解决问题 !我的是Windows用的dev-c++编译器正常运行

感谢感谢,虽然说还是没解决。就这样吧,不要了!我不要了!我去做其他的了!

ExiaGN001 发表于 2022-7-30 07:28:08

大概猜一下:
在读入文件时将'\n'作为了结束条件而非行数++的条件导致出错
页: [1]
查看完整版本: 带你学c带你飞第一个课后作业计算代码行数,为什么我的结果是0行