姜子牙疼 发表于 2021-8-9 18:01:10

作业1结果不对


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

大马强 发表于 2021-8-9 18:27:16

结果应该是没什么问题的

大马强 发表于 2021-8-9 18:28:58

你空出来的行也是算进去的,如果多了的话,就删掉一些空出来的行

姜子牙疼 发表于 2021-8-9 19:19:26

大马强 发表于 2021-8-9 18:27
结果应该是没什么问题的

但是我的结果是”目前您总共写了0行代码!"{:5_100:}

大马强 发表于 2021-8-9 19:23:01

我这正常运行,用管理者模式打开编译器试试

姜子牙疼 发表于 2021-8-9 20:36:42

大马强 发表于 2021-8-9 19:23
我这正常运行,用管理者模式打开编译器试试

不好意思,这要怎么打开{:5_99:}

你是我的快乐 发表于 2021-8-11 09:33:39

姜子牙疼 发表于 2021-8-9 19:19
但是我的结果是”目前您总共写了0行代码!"

你可以看下面的报错然后和原始代码一个一个进行比较,应该就能找到错误了,我就是这样的,不过有点费时间。

姜子牙疼 发表于 2021-8-11 09:38:53

你是我的快乐 发表于 2021-8-11 09:33
你可以看下面的报错然后和原始代码一个一个进行比较,应该就能找到错误了,我就是这样的,不过有点费时间 ...

但是我这个没有报错,它是可以正常编译运行的,只是运行之后显示的跟应该显示的不一样

Beandice 发表于 2021-8-12 16:03:11

我也是这样,我手打一遍,检查错误检查了四次,第四次是真的一模一样,我不放心,然后我直接复制代码,然后结果出来的和我手抄的一样,都是0行代码
页: [1]
查看完整版本: 作业1结果不对