鱼C论坛

 找回密码
 立即注册
查看: 2454|回复: 14

[已解决]关于[课后作业] S1E2代码提示错误

[复制链接]
发表于 2021-7-17 18:00:14 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
就是这个作业里的
windows的第17行的代码
鱼的贴子里第17行是   {    这个
我打的也是这个  {
但是就是提示错误
就显示了这一个地方是错的
搞不懂
最佳答案
2021-7-18 09:29:46
第12行拼写错误
  1. int countLines(const char *filenmae);
复制代码

修改为
  1. int countLines(const char *filename);
复制代码


第13行 大小写错误
  1. void findALLCodes(const char *path);
复制代码

修改为
  1. void findAllCodes(const char *path);
复制代码


第16行 多打了个分号
  1. int countLines(const char *filename);
复制代码

修改为
  1. int countLines(const char *filename)
复制代码


41行 拼写错误,void拼写成了vido 大小写错误 ALL改为all
  1. vido findALLCodes(const char *path)
复制代码

修改为
  1. void findAllCodes(const char *path)
复制代码


45行 符号错误,分号打成了逗号
  1. char thePath[MAX], target[MAX],
复制代码

修改为
  1. char thePath[MAX], target[MAX];
复制代码


60行 拼写错误 void 拼写成了 vido
  1. vido findALLDirs(const char *path)
复制代码

修改为
  1. void findALLDirs(const char *path)
复制代码


67行誊抄错误
  1. if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
复制代码

修改为
  1. if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
复制代码



75行少打个.
if (!strcmp(fa.name, ".") || !strcmp(fa.name,"."))
修改为
  1. if (!strcmp(fa.name, ".") || !strcmp(fa.name,".."))
复制代码


80行少打个/
  1. sprintf(thePath, "%s%s", path, fa.name);
复制代码

修改为
  1. sprintf(thePath, "%s/%s", path, fa.name);
复制代码


81行 大小写错误,thepath中p为小写,应为thePath ALL应为All
  1. findALLCodes(thepath);
复制代码

修改为
  1. findAllCodes(thePath);
复制代码


82行 大小写错误,thepath中p为小写,应为thePath
函数名错误findDIRS应为findALLDirs
  1. findDIRS(thepath);
复制代码

修改为
  1. findALLDirs(thePath);
复制代码


96行拼写错误
  1. findALLDris(path);
复制代码

修改为
  1. findALLDirs(path);
复制代码


98行
  1. printf("目前你总共写了 %ld 行代码! \n\n, todal");
复制代码

修改为
  1. printf("目前你总共写了 %ld 行代码! \n\n", total);
复制代码


完整代码

  1. #include <io.h>
  2. #include <direct.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>

  6. #define MAX        256

  7. long total;

  8. int countLines(const char *filename);
  9. void findAllCodes(const char *path);
  10. void findALLFiles(const char *path);

  11. int countLines(const char *filename)
  12. {
  13.         FILE *fp;
  14.         int count = 0;
  15.         int temp;
  16.         
  17.         if ((fp = fopen(filename, "r")) == NULL)
  18.         {
  19.                 fprintf(stderr, "Can not open the file:%s\n", filename);
  20.                 return 0;
  21.         }
  22.         
  23.         while ((temp = fgetc(fp)) != EOF)
  24.         {
  25.                 if (temp == '\n')
  26.                 {
  27.                         count++;
  28.                 }
  29.         }
  30.         
  31.         fclose(fp);
  32.         
  33.         return count;
  34. }

  35. void findAllCodes(const char *path)
  36. {
  37.         struct _finddata_t fa;
  38.         long handle;
  39.         char thePath[MAX], target[MAX];
  40.         
  41.         strcpy(thePath, path);
  42.         if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  43.         {
  44.                 do
  45.                 {
  46.                         sprintf(target, "%s/%s", path, fa.name);
  47.                         total += countLines(target);
  48.                 }while (_findnext(handle, &fa) == 0);
  49.         }
  50.    
  51.         _findclose(handle);
  52. }

  53. void findALLDirs(const char *path)
  54. {
  55.         struct _finddata_t fa;
  56.         long handle;
  57.         char thePath[MAX];
  58.         
  59.         strcpy(thePath, path);
  60.         if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
  61.         {
  62.                 fprintf(stderr, "The path %s is wrong!\n",path);
  63.                 return;
  64.         }
  65.    
  66.         do
  67.         {        
  68.                 if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
  69.                         continue;
  70.                     
  71.                 if( fa.attrib == _A_SUBDIR)
  72.                 {        
  73.                         sprintf(thePath, "%s/%s", path, fa.name);
  74.                         findAllCodes(thePath);
  75.                         findALLDirs(thePath);
  76.                 }
  77.         }while (_findnext(handle, &fa) == 0);
  78.    
  79.         _findclose(handle);   
  80. }

  81. int main()
  82. {
  83.         char path[MAX] = ".";
  84.         
  85.         printf("计算中...\n");
  86.         
  87.         findAllCodes(path);
  88.         findALLDirs(path);
  89.         
  90.         printf("目前你总共写了 %ld 行代码!\n\n", total);
  91.         system("pause");
  92.         
  93.         return 0;
  94. }
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

发表于 2021-7-17 18:01:54 | 显示全部楼层
代码发全,也可能是上面少个分号啥的,也可能是符号用的中文
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 18:19:20 | 显示全部楼层
它不一定是  {  这个的问题,有可能是该行附近有语句错误导致的,你把代码全部发出来看下
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-17 20:35:49 | 显示全部楼层

  1. #include <io.h>
  2. #include <direct.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>

  6. #define MAX        256

  7. long total;

  8. int countLines(const char *filenmae);
  9. void findALLCodes(const char *path);
  10. void findALLFiles(const char *path);

  11. int countLines(const char *filename);
  12. {
  13.              FILE *fp;
  14.              int count = 0;
  15.              int temp;
  16.             
  17.              if ((fp = fopen(filename, "r")) == NULL)
  18.                  {
  19.                  fprintf(stderr, "Can not open the file:%s\n", filename);
  20.                  return 0;
  21.              }
  22.                        
  23.              while ((temp = fgetc(fp)) != EOF)
  24.                  {
  25.                              if (temp == '\n')
  26.                              {
  27.                                          count++;
  28.                           }
  29.              }
  30.              
  31.              fclose(fp);
  32.             
  33.              return count;
  34. }

  35. vido findALLCodes(const char *path)
  36. {
  37.              struct _finddata_t fa;
  38.              long handle;
  39.              char thePath[MAX], target[MAX],
  40.             
  41.              strcpy(thePath, path);
  42.              if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  43.              {
  44.                      do
  45.                          {
  46.                                        sprintf(target, "%s/%s", path, fa.name);
  47.                                      total += countLines(target);
  48.                                  }while (_findnext(handle, &fa) == 0);
  49.              }
  50.             
  51.              _findclose(handle);
  52. }

  53. vido findALLDirs(const char *path)
  54. {
  55.              struct _finddata_t fa;
  56.              long handle;
  57.              char thePath[MAX];
  58.             
  59.              strcpy(thePath, path);
  60.              if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  61.              {
  62.                          fprintf(stderr, "The path %s is wrong !\n",path);
  63.                          return;
  64.                  }
  65.                   
  66.                  do
  67.                  {
  68.                              if (!strcmp(fa.name, ".") || !strcmp(fa.name,"."))
  69.                                      continue;
  70.                                    
  71.                              if( fa.attrib == _A_SUBDIR)
  72.                              {
  73.                                          sprintf(thePath, "%s%s", path, fa.name);
  74.                                          findALLCodes(thepath);
  75.                                          findDIRS(thepath);
  76.                                 }
  77.                   }while (_findnext(handle, &fa) == 0);
  78.                  
  79.                  _findcloose(handle);
  80. }      

  81. int main()
  82. {
  83.              char path[MAX] = ".";
  84.          
  85.              printf("计算中...\n");
  86.             
  87.              findALLCodes(path);
  88.              findALLDris(path);
  89.             
  90.              printf("目前你总共写了 %ld 行代码! \n\n, todal");
  91.              system("pause");
  92.             
  93.              return 0;
  94. }
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-17 20:36:28 | 显示全部楼层
我打的是这样的
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-17 20:37:01 | 显示全部楼层
逃兵 发表于 2021-7-17 18:01
代码发全,也可能是上面少个分号啥的,也可能是符号用的中文

  1. #include <io.h>
  2. #include <direct.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>

  6. #define MAX        256

  7. long total;

  8. int countLines(const char *filenmae);
  9. void findALLCodes(const char *path);
  10. void findALLFiles(const char *path);

  11. int countLines(const char *filename);
  12. {
  13.              FILE *fp;
  14.              int count = 0;
  15.              int temp;
  16.             
  17.              if ((fp = fopen(filename, "r")) == NULL)
  18.                  {
  19.                  fprintf(stderr, "Can not open the file:%s\n", filename);
  20.                  return 0;
  21.              }
  22.                        
  23.              while ((temp = fgetc(fp)) != EOF)
  24.                  {
  25.                              if (temp == '\n')
  26.                              {
  27.                                          count++;
  28.                           }
  29.              }
  30.              
  31.              fclose(fp);
  32.             
  33.              return count;
  34. }

  35. vido findALLCodes(const char *path)
  36. {
  37.              struct _finddata_t fa;
  38.              long handle;
  39.              char thePath[MAX], target[MAX],
  40.             
  41.              strcpy(thePath, path);
  42.              if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  43.              {
  44.                      do
  45.                          {
  46.                                        sprintf(target, "%s/%s", path, fa.name);
  47.                                      total += countLines(target);
  48.                                  }while (_findnext(handle, &fa) == 0);
  49.              }
  50.             
  51.              _findclose(handle);
  52. }

  53. vido findALLDirs(const char *path)
  54. {
  55.              struct _finddata_t fa;
  56.              long handle;
  57.              char thePath[MAX];
  58.             
  59.              strcpy(thePath, path);
  60.              if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  61.              {
  62.                          fprintf(stderr, "The path %s is wrong !\n",path);
  63.                          return;
  64.                  }
  65.                   
  66.                  do
  67.                  {
  68.                              if (!strcmp(fa.name, ".") || !strcmp(fa.name,"."))
  69.                                      continue;
  70.                                    
  71.                              if( fa.attrib == _A_SUBDIR)
  72.                              {
  73.                                          sprintf(thePath, "%s%s", path, fa.name);
  74.                                          findALLCodes(thepath);
  75.                                          findDIRS(thepath);
  76.                                 }
  77.                   }while (_findnext(handle, &fa) == 0);
  78.                  
  79.                  _findcloose(handle);
  80. }      

  81. int main()
  82. {
  83.              char path[MAX] = ".";
  84.          
  85.              printf("计算中...\n");
  86.             
  87.              findALLCodes(path);
  88.              findALLDris(path);
  89.             
  90.              printf("目前你总共写了 %ld 行代码! \n\n, todal");
  91.              system("pause");
  92.             
  93.              return 0;
  94. }
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-17 20:37:31 | 显示全部楼层
Super丶钢铁侠 发表于 2021-7-17 18:19
它不一定是  {  这个的问题,有可能是该行附近有语句错误导致的,你把代码全部发出来看下

  1. #include <io.h>
  2. #include <direct.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>

  6. #define MAX        256

  7. long total;

  8. int countLines(const char *filenmae);
  9. void findALLCodes(const char *path);
  10. void findALLFiles(const char *path);

  11. int countLines(const char *filename);
  12. {
  13.              FILE *fp;
  14.              int count = 0;
  15.              int temp;
  16.             
  17.              if ((fp = fopen(filename, "r")) == NULL)
  18.                  {
  19.                  fprintf(stderr, "Can not open the file:%s\n", filename);
  20.                  return 0;
  21.              }
  22.                        
  23.              while ((temp = fgetc(fp)) != EOF)
  24.                  {
  25.                              if (temp == '\n')
  26.                              {
  27.                                          count++;
  28.                           }
  29.              }
  30.              
  31.              fclose(fp);
  32.             
  33.              return count;
  34. }

  35. vido findALLCodes(const char *path)
  36. {
  37.              struct _finddata_t fa;
  38.              long handle;
  39.              char thePath[MAX], target[MAX],
  40.             
  41.              strcpy(thePath, path);
  42.              if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  43.              {
  44.                      do
  45.                          {
  46.                                        sprintf(target, "%s/%s", path, fa.name);
  47.                                      total += countLines(target);
  48.                                  }while (_findnext(handle, &fa) == 0);
  49.              }
  50.             
  51.              _findclose(handle);
  52. }

  53. vido findALLDirs(const char *path)
  54. {
  55.              struct _finddata_t fa;
  56.              long handle;
  57.              char thePath[MAX];
  58.             
  59.              strcpy(thePath, path);
  60.              if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  61.              {
  62.                          fprintf(stderr, "The path %s is wrong !\n",path);
  63.                          return;
  64.                  }
  65.                   
  66.                  do
  67.                  {
  68.                              if (!strcmp(fa.name, ".") || !strcmp(fa.name,"."))
  69.                                      continue;
  70.                                    
  71.                              if( fa.attrib == _A_SUBDIR)
  72.                              {
  73.                                          sprintf(thePath, "%s%s", path, fa.name);
  74.                                          findALLCodes(thepath);
  75.                                          findDIRS(thepath);
  76.                                 }
  77.                   }while (_findnext(handle, &fa) == 0);
  78.                  
  79.                  _findcloose(handle);
  80. }      

  81. int main()
  82. {
  83.              char path[MAX] = ".";
  84.          
  85.              printf("计算中...\n");
  86.             
  87.              findALLCodes(path);
  88.              findALLDris(path);
  89.             
  90.              printf("目前你总共写了 %ld 行代码! \n\n, todal");
  91.              system("pause");
  92.             
  93.              return 0;
  94. }
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 21:34:26 | 显示全部楼层
  1. int countLines(const char *filename);
复制代码

多了一个分号
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-18 07:28:49 | 显示全部楼层
  1. #include <io.h>
  2. #include <direct.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>

  6. #define MAX        256

  7. long total;

  8. int countLines(const char *filenmae);
  9. void findALLCodes(const char *path);
  10. void findALLFiles(const char *path);

  11. int countLines(const char *filename)//你这里原本有一个分号的,删掉就好了
  12. {
  13.           FILE *fp;
  14.           int count = 0;
  15.           int temp;

  16.           if ((fp = fopen(filename, "r")) == NULL)
  17.              {
  18.              fprintf(stderr, "Can not open the file:%s\n", filename);
  19.              return 0;
  20.          }

  21.          while ((temp = fgetc(fp)) != EOF)
  22.              {
  23.                          if (temp == '\n')
  24.                          {
  25.                                      count++;
  26.                       }
  27.          }

  28.           fclose(fp);

  29.           return count;
  30. }

  31. vido findALLCodes(const char *path)
  32. {
  33.           struct _finddata_t fa;
  34.           long handle;
  35.           char thePath[MAX], target[MAX],

  36.           strcpy(thePath, path);
  37.           if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  38.           {
  39.                   do
  40.                      {
  41.                                    sprintf(target, "%s/%s", path, fa.name);
  42.                                  total += countLines(target);
  43.                              }while (_findnext(handle, &fa) == 0);
  44.          }

  45.          _findclose(handle);
  46. }

  47. vido findALLDirs(const char *path)
  48. {
  49.           struct _finddata_t fa;
  50.           long handle;
  51.           char thePath[MAX];

  52.           strcpy(thePath, path);
  53.           if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  54.           {
  55.                       fprintf(stderr, "The path %s is wrong !\n",path);
  56.                       return;
  57.              }

  58.              do
  59.              {
  60.                          if (!strcmp(fa.name, ".") || !strcmp(fa.name,"."))
  61.                                  continue;

  62.                          if( fa.attrib == _A_SUBDIR)
  63.                          {
  64.                                      sprintf(thePath, "%s%s", path, fa.name);
  65.                                      findALLCodes(thepath);
  66.                                      findDIRS(thepath);
  67.                             }
  68.               }while (_findnext(handle, &fa) == 0);

  69.              _findcloose(handle);
  70. }

  71. int main()
  72. {
  73.           char path[MAX] = ".";

  74.          printf("计算中...\n");

  75.          findALLCodes(path);
  76.          findALLDris(path);

  77.          printf("目前你总共写了 %ld 行代码! \n\n, todal");
  78.          system("pause");

  79.          return 0;
  80. }
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-18 09:29:46 | 显示全部楼层    本楼为最佳答案   
第12行拼写错误
  1. int countLines(const char *filenmae);
复制代码

修改为
  1. int countLines(const char *filename);
复制代码


第13行 大小写错误
  1. void findALLCodes(const char *path);
复制代码

修改为
  1. void findAllCodes(const char *path);
复制代码


第16行 多打了个分号
  1. int countLines(const char *filename);
复制代码

修改为
  1. int countLines(const char *filename)
复制代码


41行 拼写错误,void拼写成了vido 大小写错误 ALL改为all
  1. vido findALLCodes(const char *path)
复制代码

修改为
  1. void findAllCodes(const char *path)
复制代码


45行 符号错误,分号打成了逗号
  1. char thePath[MAX], target[MAX],
复制代码

修改为
  1. char thePath[MAX], target[MAX];
复制代码


60行 拼写错误 void 拼写成了 vido
  1. vido findALLDirs(const char *path)
复制代码

修改为
  1. void findALLDirs(const char *path)
复制代码


67行誊抄错误
  1. if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
复制代码

修改为
  1. if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
复制代码



75行少打个.
if (!strcmp(fa.name, ".") || !strcmp(fa.name,"."))
修改为
  1. if (!strcmp(fa.name, ".") || !strcmp(fa.name,".."))
复制代码


80行少打个/
  1. sprintf(thePath, "%s%s", path, fa.name);
复制代码

修改为
  1. sprintf(thePath, "%s/%s", path, fa.name);
复制代码


81行 大小写错误,thepath中p为小写,应为thePath ALL应为All
  1. findALLCodes(thepath);
复制代码

修改为
  1. findAllCodes(thePath);
复制代码


82行 大小写错误,thepath中p为小写,应为thePath
函数名错误findDIRS应为findALLDirs
  1. findDIRS(thepath);
复制代码

修改为
  1. findALLDirs(thePath);
复制代码


96行拼写错误
  1. findALLDris(path);
复制代码

修改为
  1. findALLDirs(path);
复制代码


98行
  1. printf("目前你总共写了 %ld 行代码! \n\n, todal");
复制代码

修改为
  1. printf("目前你总共写了 %ld 行代码! \n\n", total);
复制代码


完整代码

  1. #include <io.h>
  2. #include <direct.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>

  6. #define MAX        256

  7. long total;

  8. int countLines(const char *filename);
  9. void findAllCodes(const char *path);
  10. void findALLFiles(const char *path);

  11. int countLines(const char *filename)
  12. {
  13.         FILE *fp;
  14.         int count = 0;
  15.         int temp;
  16.         
  17.         if ((fp = fopen(filename, "r")) == NULL)
  18.         {
  19.                 fprintf(stderr, "Can not open the file:%s\n", filename);
  20.                 return 0;
  21.         }
  22.         
  23.         while ((temp = fgetc(fp)) != EOF)
  24.         {
  25.                 if (temp == '\n')
  26.                 {
  27.                         count++;
  28.                 }
  29.         }
  30.         
  31.         fclose(fp);
  32.         
  33.         return count;
  34. }

  35. void findAllCodes(const char *path)
  36. {
  37.         struct _finddata_t fa;
  38.         long handle;
  39.         char thePath[MAX], target[MAX];
  40.         
  41.         strcpy(thePath, path);
  42.         if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
  43.         {
  44.                 do
  45.                 {
  46.                         sprintf(target, "%s/%s", path, fa.name);
  47.                         total += countLines(target);
  48.                 }while (_findnext(handle, &fa) == 0);
  49.         }
  50.    
  51.         _findclose(handle);
  52. }

  53. void findALLDirs(const char *path)
  54. {
  55.         struct _finddata_t fa;
  56.         long handle;
  57.         char thePath[MAX];
  58.         
  59.         strcpy(thePath, path);
  60.         if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
  61.         {
  62.                 fprintf(stderr, "The path %s is wrong!\n",path);
  63.                 return;
  64.         }
  65.    
  66.         do
  67.         {        
  68.                 if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
  69.                         continue;
  70.                     
  71.                 if( fa.attrib == _A_SUBDIR)
  72.                 {        
  73.                         sprintf(thePath, "%s/%s", path, fa.name);
  74.                         findAllCodes(thePath);
  75.                         findALLDirs(thePath);
  76.                 }
  77.         }while (_findnext(handle, &fa) == 0);
  78.    
  79.         _findclose(handle);   
  80. }

  81. int main()
  82. {
  83.         char path[MAX] = ".";
  84.         
  85.         printf("计算中...\n");
  86.         
  87.         findAllCodes(path);
  88.         findALLDirs(path);
  89.         
  90.         printf("目前你总共写了 %ld 行代码!\n\n", total);
  91.         system("pause");
  92.         
  93.         return 0;
  94. }
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-18 21:07:39 | 显示全部楼层
逃兵 发表于 2021-7-18 09:29
第12行拼写错误

修改为

谢谢大佬
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-24 13:23:17 | 显示全部楼层

#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[MAX],target[MAX];
            
             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[MAX];
               
                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[MAX] = ".";
             
             printf("计算中...\n");
             
             findAllCodes(path);
             findALLDirs(path);
             
             printf("目前你总共写了%1d 行代码! \n\n", total);
             system("pause");
             
             return 0;
}
大佬能帮帮我看看错哪里了吗,我是一直0行
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-25 16:10:31 | 显示全部楼层
hukailun2 发表于 2021-7-24 13:23
#include
#include
#include

我也是新手啊
你到求助贴去发个帖子
会有人回你的
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-26 17:41:10 | 显示全部楼层
请问为什么只有计算中不显示写了几行代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-27 17:55:56 | 显示全部楼层
lzwy 发表于 2021-7-26 17:41
请问为什么只有计算中不显示写了几行代码

我是新手也不懂啊
你发个帖子问问吧
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-4-27 04:55

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表