鱼C论坛

 找回密码
 立即注册
查看: 2373|回复: 8

[已解决]C语言第一节课

[复制链接]
发表于 2022-8-27 21:35:37 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
想求助一下大家,在第一节课后作业中,我用codeblocks Windows系统敲的小甲鱼布置的那个一百多行的代码 可是运行的时候总出现这个关于findALLDirs的错误 想知道为什么 求助求助 谢谢大家!!
最佳答案
2022-8-27 22:10:01
看我注释
#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[MAX],target[MAX];

        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)  // 这里改为findALLDirs 
             {
             struct _finddata_t fa;
             long handle;
             char thePath[MAX];

             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[MAX] = ".";

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

      findALLCodes(path);
      findALLDirs(path);

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

      return 0;
      }
1BD7971F-541E-47B8-8370-256376F86B1A.jpeg
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-8-27 21:38:50 | 显示全部楼层
代码打错了,把你的源代码发出来
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-8-27 21:48:13 | 显示全部楼层
临时号 发表于 2022-8-27 21:38
代码打错了,把你的源代码发出来


#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[MAX],target[MAX];

        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 finALLDirs(const char *path)
             {
             struct _finddata_t fa;
             long handle;
             char thePath[MAX];

             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[MAX] = ".";

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

      findALLCodes(path);
      findALLDirs(path);

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

      return 0;
      }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-27 22:10:01 | 显示全部楼层    本楼为最佳答案   
看我注释
#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[MAX],target[MAX];

        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)  // 这里改为findALLDirs 
             {
             struct _finddata_t fa;
             long handle;
             char thePath[MAX];

             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[MAX] = ".";

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

      findALLCodes(path);
      findALLDirs(path);

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

      return 0;
      }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-27 22:11:35 | 显示全部楼层
iistan 发表于 2022-8-27 21:48
#include
#include
#include

你代码中确实没有findALLDirs函数啊。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 0 反对 1

使用道具 举报

发表于 2022-8-27 23:41:47 | 显示全部楼层
43        21        C:\Users\36218\Desktop\fishc\s1\test.c        [Error] storage size of 'fa' isn't known
这是为啥呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-28 00:18:03 | 显示全部楼层
iistan 发表于 2022-8-27 21:48
#include
#include
#include

打成finALLDirs了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-8-28 10:22:08 | 显示全部楼层

谢谢 明白了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-8-28 10:22:40 | 显示全部楼层

谢谢 明白了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 00:00

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表