投入就放过 发表于 2022-2-8 11:32:32

第一课 百行代码


#include <stdio.h>
#include <io.h>
#include <direct.h>
#include <string.h>
#include <stdlib.h>

#define MAX256

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

我是直接复制粘贴的,为什么最后显示   目前你总共写了0行代码呢?

ckblt 发表于 2022-2-8 11:48:24

我用的 MinGW 没问题
计算中...
目前你总共写了101行代码!

请按任意键继续. . .

ckblt 发表于 2022-2-8 11:52:12

把void findALLFiles(const char *path);
改成void findALLDirs(const char *path);

投入就放过 发表于 2022-2-8 12:56:40

ckblt 发表于 2022-2-8 11:52

改成

好像还是不行

ckblt 发表于 2022-2-8 13:01:25

char path = ".";
改成
char path = "..";

ckblt 发表于 2022-2-8 13:02:17

或者改成
char path = "";

投入就放过 发表于 2022-2-8 13:09:36

ckblt 发表于 2022-2-8 13:02
或者改成

可以了感谢,这是为什么呢?

ckblt 发表于 2022-2-8 13:11:09

投入就放过 发表于 2022-2-8 13:09
可以了感谢,这是为什么呢?

我也不知道

投入就放过 发表于 2022-2-8 13:18:30

ckblt 发表于 2022-2-8 13:11
我也不知道

感谢感谢!

tomok 发表于 2022-2-8 19:18:53

学习 了


页: [1]
查看完整版本: 第一课 百行代码