欢快的小白 发表于 2020-6-15 13:13:36

求助啊,为啥c语言第一节课抄写代码多少行 我出来的结果是400多行啊

直接复制小甲鱼的代码也是这个结果,是在win10的系统运行的编译器dev c++

小甲鱼的铁粉 发表于 2020-6-15 14:49:06

啥?代码呢》?

欢快的小白 发表于 2020-6-15 15:30:51

小甲鱼的铁粉 发表于 2020-6-15 14:49
啥?代码呢》?


#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-6-15 15:32:00

小甲鱼的铁粉 发表于 2020-6-15 14:49
啥?代码呢》?

按照小甲鱼的答案   应该是102行才对的现在不知道为啥   纯刚接触的小白

Justin1 发表于 2020-6-15 16:05:54

编译器的问题,不是你的问题。我用devc++257行,viusual studio显示正确100行,具体原因不知道。不过建议,多尝试几种编译器储备。有些时候不是你的问题,不同编译器产生结果会不同
vs的运行结果

405794672 发表于 2020-6-15 16:07:48

这代码其中有些错误,不过无关紧要。并不需要声明函数,而声明的函数与真正函数名不对。
现在来回答你的问题:
该代码是统计你电脑某个文件夹里所有文件的代码。凡是c的代码都会被统计。所以每个人也不一样。你在项目里面还有其它源文件,也被统计了的。
页: [1]
查看完整版本: 求助啊,为啥c语言第一节课抄写代码多少行 我出来的结果是400多行啊