2450864878 发表于 2020-5-11 14:22:44

s1e2求助

计算代码长度的那个程序
我运行出来为啥是
计算中...
目前你总共写了0行代码!

sunrise085 发表于 2020-5-11 14:28:39

发你的代码~~

2450864878 发表于 2020-5-11 14:29:48

sunrise085 发表于 2020-5-11 14:28
发你的代码~~

#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);
void findALLDirs(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 pat %s 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;
}

2450864878 发表于 2020-5-11 14:30:18

sunrise085 发表于 2020-5-11 14:28
发你的代码~~

复制粘贴了一遍也是这样

sunrise085 发表于 2020-5-11 14:37:18

2450864878 发表于 2020-5-11 14:29
#include
#include
#include


你看看你的程序文件是不是.cpp文件啊。
你这个程序统计的是.c文件

2450864878 发表于 2020-5-11 14:39:16

sunrise085 发表于 2020-5-11 14:37
你看看你的程序文件是不是.cpp文件啊。
你这个程序统计的是.c文件

嗷嗷 那要统计.cpp的话程序改动麻烦不

sunrise085 发表于 2020-5-11 14:42:40

2450864878 发表于 2020-5-11 14:39
嗷嗷 那要统计.cpp的话程序改动麻烦不

。。。。。。。
你是不是根本不懂这个程序啊?
findAllCodes函数中不是有个if条件语句吗?
那里限制了文件后缀,把.c改为.cpp不,不就可以了?

2450864878 发表于 2020-5-11 14:45:32

sunrise085 发表于 2020-5-11 14:42
。。。。。。。
你是不是根本不懂这个程序啊?
findAllCodes函数中不是有个if条件语句吗?


我刚学到指针{:10_279:}

2450864878 发表于 2020-5-11 14:46:03

sunrise085 发表于 2020-5-11 14:42
。。。。。。。
你是不是根本不懂这个程序啊?
findAllCodes函数中不是有个if条件语句吗?


我刚学到指针啊哈哈
页: [1]
查看完整版本: s1e2求助