楠楠宝贝吖 发表于 2020-10-11 15:20:54

运行出错

#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 findA11Codes(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 findA11Codes (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, "%5/%5", 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);
                  findA11Codes(thePath);
            findALLDirs(thePath);
                }
        }while(_findnext(handle, &fa) == 0);
       
        _findclose(handle);
}

int main()
{
        char path = ".";
       
        printf("计算中...\n");
       
        findA11Codes(path);
        findALLDirs(path);
       
        printf("目前你总共写了 %1d 行代码! \n\n", total);
        system("pause");
       
        return 0;
}
编译显示can not open the file
结果为 目前打了0行代码
球球各位大神看一下

乐乐学编程 发表于 2020-10-11 15:27:45

我运行你的程序,编译是正常的,没有报错,我就不知道你哪里写错了,你试一下我的代码:

// 如果程序文件是 *.cpp,则将第 49 行的 "/*.c" 直接改为 "/*.cpp"

#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)// 如果程序文件是 *.cpp,则将此行的 "/*.c" 直接改为 "/*.cpp"
        {
      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);    // C要大写
    findALLDirs(path);

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

    return 0;
}

楠楠宝贝吖 发表于 2020-10-11 15:32:11

乐乐学编程 发表于 2020-10-11 15:27
我运行你的程序,编译是正常的,没有报错,我就不知道你哪里写错了,你试一下我的代码:

你的就可以,我的显示0行代码

乐乐学编程 发表于 2020-10-11 15:33:59

楠楠宝贝吖 发表于 2020-10-11 15:32
你的就可以,我的显示0行代码

肯定是你的代码哪里有写错,但软件没有报错,也就无法帮你查找了

楠楠宝贝吖 发表于 2020-10-11 15:38:49

楠楠宝贝吖 发表于 2020-10-11 15:32
你的就可以,我的显示0行代码

楠楠宝贝吖 发表于 2020-10-11 15:40:32

乐乐学编程 发表于 2020-10-11 15:33
肯定是你的代码哪里有写错,但软件没有报错,也就无法帮你查找了

它会显示can not open the file

楠楠宝贝吖 发表于 2020-10-11 15:42:51

楠楠宝贝吖 发表于 2020-10-11 15:40
它会显示can not open the file

楠楠宝贝吖 发表于 2020-10-11 15:43:50

乐乐学编程 发表于 2020-10-11 15:33
肯定是你的代码哪里有写错,但软件没有报错,也就无法帮你查找了

能加个好友吗?我不太会用这个网站{:5_100:}

baige 发表于 2020-10-11 15:50:18

#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 findA11Codes(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 findA11Codes (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);// 小写s不是不是数字5
                        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);
                findA11Codes(thePath);
                    findALLDirs(thePath);
            }
      }while(_findnext(handle, &fa) == 0);
      
      _findclose(handle);
}

int main()
{
      char path = ".";
      
      printf("计算中...\n");
      
      findA11Codes(path);
      findALLDirs(path);
      
      printf("目前你总共写了 %ld 行代码! \n\n", total);// 小写L不是数字1
      system("pause");
      
      return 0;
}

baige 发表于 2020-10-11 15:51:08

3个地方有错误,27,51,97行,注释有写

楠楠宝贝吖 发表于 2020-10-11 15:53:47

baige 发表于 2020-10-11 15:51
3个地方有错误,27,51,97行,注释有写

没有报错。。

楠楠宝贝吖 发表于 2020-10-11 15:55:00

baige 发表于 2020-10-11 15:51
3个地方有错误,27,51,97行,注释有写

您能说清楚一点吗、蟹蟹啦

乐乐学编程 发表于 2020-10-11 16:02:05

楠楠宝贝吖 发表于 2020-10-11 15:32
你的就可以,我的显示0行代码

我发现了你的程序中下面几个本应是小写字母 l 的,你都写成了数字 1 :
void findA11Codes(const char *path);
void findA11Codes (const char *path)
findA11Codes(path);
printf("目前你总共写了 %1d 行代码! \n\n", total);

乐乐学编程 发表于 2020-10-11 16:12:45

我找出上面的问题都花了不少的时间,但程序仍然还有错误,不能正常运行。有鉴于此,我给你一个建议:这道题它的意义在于让你自己动动,练习敲键盘,而不是让你写这个程序,所以,不要再纠结这道题了,采纳我那个就好。知道C语言是怎么回事就行了,节约下来的时间,你可以多看几遍视频,多看几页书,甚至开始自己写个小程序什么的

楠楠宝贝吖 发表于 2020-10-11 16:13:42

乐乐学编程 发表于 2020-10-11 16:02
我发现了你的程序中下面几个本应是小写字母 l 的,你都写成了数字 1 :
void findA11Codes(const char * ...

我都改过了{:7_119:}

楠楠宝贝吖 发表于 2020-10-11 16:15:47

乐乐学编程 发表于 2020-10-11 16:12
我找出上面的问题都花了不少的时间,但程序仍然还有错误,不能正常运行。有鉴于此,我给你一个建议:这道题 ...

好的,蟹蟹啦

乐乐学编程 发表于 2020-10-11 16:18:50

本帖最后由 乐乐学编程 于 2020-10-11 16:20 编辑

楠楠宝贝吖 发表于 2020-10-11 16:15
好的,蟹蟹啦

加好友,没问题,你可能级别还不够,要够 100 积分,达到 鱼友I 这个级别才行。刚才我加你了

楠楠宝贝吖 发表于 2020-10-11 16:24:38

乐乐学编程 发表于 2020-10-11 16:18
加好友,没问题,你可能级别还不够,要够 100 积分,达到 鱼友I 这个级别才行。刚才我加你了

我是说其他联系方式啥的,我刚加了这个,不太会用’

乐乐学编程 发表于 2020-10-11 16:29:01

楠楠宝贝吖 发表于 2020-10-11 16:24
我是说其他联系方式啥的,我刚加了这个,不太会用’

QQ、微信,我都很少时间上,眼睛本来就不好了,再长时间看那么小的字,我怕我会瞎了。你要加,给你个QQ号,你加吧:626988698

乐乐学编程 发表于 2020-10-11 16:30:39

挨审查了,什么时候能放出来,这可不知道了
页: [1] 2
查看完整版本: 运行出错