小王贱贱 发表于 2020-1-31 00:50:23

统计代码行数

请问带你学c带你飞的第二节课里的统计代码行数,为什么我的运行出来一直都是0行代码,后来把小甲鱼的代码复制后还是0行代码,求助

qiuyouzhi 发表于 2020-1-31 08:17:56

发代码

sanguine_boy 发表于 2020-1-31 10:42:48

你不发代码出来谁知道错哪了呀。。。。。{:5_104:}

zltzlt 发表于 2020-1-31 11:43:06

肯定是抄错了。细心检查!

小王贱贱 发表于 2020-1-31 13:41:13

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

一个账号 发表于 2020-1-31 14:07:46

小王贱贱 发表于 2020-1-31 13:41
#include
#include
#include


你的操作系统是 Windows 还是 Mac OS?

zltzlt 发表于 2020-1-31 14:17:14

这段代码可以实现:

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

小王贱贱 发表于 2020-1-31 14:25:05

一个账号 发表于 2020-1-31 14:07
你的操作系统是 Windows 还是 Mac OS?

win

小王贱贱 发表于 2020-1-31 14:29:21

zltzlt 发表于 2020-1-31 14:17
这段代码可以实现:

也是不行,对路径有什么要求吗?

zltzlt 发表于 2020-1-31 14:29:39

小王贱贱 发表于 2020-1-31 14:29
也是不行,对路径有什么要求吗?

会报错吗?

小王贱贱 发表于 2020-1-31 14:30:07

zltzlt 发表于 2020-1-31 14:29
会报错吗?

没有报错

zltzlt 发表于 2020-1-31 14:31:05

小王贱贱 发表于 2020-1-31 14:30
没有报错

那结果是什么 ?

小王贱贱 发表于 2020-1-31 14:33:34

C:\Users\86178\Desktop

小王贱贱 发表于 2020-1-31 14:36:12

小王贱贱 发表于 2020-1-31 14:33


ndz2020 发表于 2020-3-28 00:38:12

参考这个答案
https://fishc.com.cn/forum.php?mod=viewthread&tid=144858&highlight=%B4%FA%C2%EB%D0%D0%CA%FD

hange01 发表于 2020-3-28 14:18:40

代码 没问题   软件:DEV-C++ 5.11   

执迷不悟0527 发表于 2021-10-6 12:12:19

zltzlt 发表于 2020-1-31 14:17
这段代码可以实现:

我是小白,我想问为什么我复制你这个代码到devc++为什么还是现实的是0行
页: [1]
查看完整版本: 统计代码行数