Ronin7 发表于 2023-2-25 10:23:27

问问小甲鱼第一次课后作业的问题,实在是搞不懂错在哪里了

先上源码:

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

jhq999 发表于 2023-2-25 10:40:54

本帖最后由 jhq999 于 2023-2-25 10:42 编辑

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

ExiaGN001 发表于 2023-2-25 14:01:58

本帖最后由 ExiaGN001 于 2023-2-25 14:05 编辑


这个问题涉及到了转义字符。
在printf中,打出一个'\'字符需要printf("\\");
而在处理时没弄好这个点就会导致不符预期的结果。
代码见二楼,那位老哥写的很好,结果也是对的。

Ronin7 发表于 2023-2-25 19:30:39

ExiaGN001 发表于 2023-2-25 14:01
这个问题涉及到了转义字符。
在printf中,打出一个'\'字符需要printf("\\");
而在处理时没弄好这个点就 ...

非常感谢老哥 现在懂了

1613551 发表于 2023-2-26 06:59:53

这是啥主题呀,配色好好看

Ronin7 发表于 2023-2-27 08:25:11

1613551 发表于 2023-2-26 06:59
这是啥主题呀,配色好好看

用的这个

又要入门到放弃 发表于 2023-3-6 15:06:32

你好 请问你的这个修改后的代码能发一下吗?我现在运行的结果依然和你之前的代码一样 说的时总共写了零行。。。

Ronin7 发表于 2023-3-25 14:52:34

又要入门到放弃 发表于 2023-3-6 15:06
你好 请问你的这个修改后的代码能发一下吗?我现在运行的结果依然和你之前的代码一样 说的时总共写了零行。 ...

哥们直接复制我设置为正确答案的那个楼的代码就行了
他的//地方就是出错的地方
页: [1]
查看完整版本: 问问小甲鱼第一次课后作业的问题,实在是搞不懂错在哪里了