bailetayiyan 发表于 2023-4-9 11:02:46

C语言教程 s1e2 课后作业求救


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



能运行了,但是运行出来的是:目前你总共写了0行代码

看不懂,{:5_92:}

isdkz 发表于 2023-4-9 11:07:46

那可能是因为你的文件后缀名是 .cpp,把 .c 改成 .cpp 看看

#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, "/*.cpp"), &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;
}


bailetayiyan 发表于 2023-4-9 11:14:07

isdkz 发表于 2023-4-9 11:07
那可能是因为你的文件后缀名是 .cpp,把 .c 改成 .cpp 看看

哦哦,可以了,感谢{:5_100:}

bailetayiyan 发表于 2023-4-9 11:14:46

isdkz 发表于 2023-4-9 11:07
那可能是因为你的文件后缀名是 .cpp,把 .c 改成 .cpp 看看

把后缀改成了    .c

isdkz 发表于 2023-4-9 11:15:26

bailetayiyan 发表于 2023-4-9 11:14
把后缀改成了    .c

这样也行
页: [1]
查看完整版本: C语言教程 s1e2 课后作业求救