clash 发表于 2021-3-21 17:12:36

c语言作业求助

《带你学c带你飞》第一季的第一个作业,为什么我运行后统计出来的代码行数是0?

clash 发表于 2021-3-21 17:13:11

求助{:10_254:}

jackz007 发表于 2021-3-21 17:30:02

      你第 151 行和第 188 、201 行代码写错了。

clash 发表于 2021-3-21 18:05:20

jackz007 发表于 2021-3-21 17:30
你第 151 行和第 188 、201 行代码写错了。

好的,我再检查下,多谢{:10_256:}

clash 发表于 2021-3-21 18:07:07

clash 发表于 2021-3-21 18:05
好的,我再检查下,多谢

总共才102行{:10_291:}

jackz007 发表于 2021-3-21 18:22:08

clash 发表于 2021-3-21 18:05
好的,我再检查下,多谢

      楼主也不问一下,我是怎么知道的?是的,我确实不知道,纯属瞎猜,因为你不贴代码,我只能瞎猜!

clash 发表于 2021-3-21 18:56:25

jackz007 发表于 2021-3-21 18:22
楼主也不问一下,我是怎么知道的?是的,我确实不知道,纯属瞎猜,因为你不贴代码,我只能瞎猜!

不好意思

clash 发表于 2021-3-21 18:57:18

jackz007 发表于 2021-3-21 18:22
楼主也不问一下,我是怎么知道的?是的,我确实不知道,纯属瞎猜,因为你不贴代码,我只能瞎猜!


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

害羞的新手 发表于 2021-3-25 22:44:42

一个敢答一个敢信{:10_277:}

yuxijian2020 发表于 2021-3-26 09:04:36

你俩给我整笑了都{:9_217:}

shiwobuhaoma 发表于 2021-3-26 11:43:21

本帖最后由 shiwobuhaoma 于 2021-3-26 11:46 编辑

   char path = ".",./是当前文件夹下,./*是当前文件夹下所有的文件及文件夹,_findFirst代码也不贴全。结果是0,猜测是路径给的不对

clash 发表于 2021-3-26 23:27:39

shiwobuhaoma 发表于 2021-3-26 11:43
char path = ".",./是当前文件夹下,./*是当前文件夹下所有的文件及文件夹,_findFirst代码也不贴 ...

那我应该怎么该呢?

qiuzhi123 发表于 2021-3-27 20:27:27

还是要一行行的对比,总会发现错在那儿的

clash 发表于 2021-3-30 14:30:45

qiuzhi123 发表于 2021-3-27 20:27
还是要一行行的对比,总会发现错在那儿的

复制粘贴了,也是一样
页: [1]
查看完整版本: c语言作业求助