kazuya8375 发表于 2019-4-10 16:16:26

s1e1课后测试


我跟着课后练习打完 发现答案是0
然后复制正确答案 为什么也是0...













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

啊涂涂 发表于 2019-4-10 19:26:11

加油兄弟

kazuya8375 发表于 2019-4-10 22:59:09

啊涂涂 发表于 2019-4-10 19:26
加油兄弟

兄弟 我研究好久 请问可以跟我指点一下吗 给我个方向走...

82457097 发表于 2019-4-10 23:50:27

看你文件的后缀是.c还是.cpp 然后把代码里的改成一样的

啊涂涂 发表于 2019-4-11 07:20:14

kazuya8375 发表于 2019-4-10 22:59
兄弟 我研究好久 请问可以跟我指点一下吗 给我个方向走...

说实话兄弟,我是完全没有基础学得这个C语言。当时打这段代码的时候比较幸运,打完就能运行了。我也就没细看。再说了,以当时我的水平什么都不懂,是不可能看懂的。如果你是和我一样的情况,那我建议你先不要管这段代码了,向后继续学习。本来小甲鱼让大家打这段代码的本意就不是说让大家去看懂它,学会它。至于你说的方向是学C语言的方向吗?

kazuya8375 发表于 2019-4-11 12:20:35

kazuya8375 发表于 2019-4-10 22:59
兄弟 我研究好久 请问可以跟我指点一下吗 给我个方向走...

謝謝你 已經解決!!

kazuya8375 发表于 2019-4-11 12:21:35

啊涂涂 发表于 2019-4-11 07:20
说实话兄弟,我是完全没有基础学得这个C语言。当时打这段代码的时候比较幸运,打完就能运行了。我也就没 ...

我是指这个程式码 谢谢你 好的 我先不要去管这个代码 感谢你

啊涂涂 发表于 2019-4-11 13:43:58

kazuya8375 发表于 2019-4-11 12:21
我是指这个程式码 谢谢你 好的 我先不要去管这个代码 感谢你

加油

dps1123 发表于 2019-4-11 22:50:06

层主,萌新默默问一下,C语言的课后题在哪{:9_241:}

kazuya8375 发表于 2019-4-12 13:42:53

dps1123 发表于 2019-4-11 22:50
层主,萌新默默问一下,C语言的课后题在哪

https://fishc.com.cn/forum.php?mod=forumdisplay&fid=329&filter=typeid&typeid=570

dps1123 发表于 2019-4-12 20:44:09

{:9_227:}十分感谢
页: [1]
查看完整版本: s1e1课后测试