向舒 发表于 2021-5-16 20:20:21

有看不懂的报错,求救

s1e2课中计算代码的程序出现情况看不太懂,应该怎么改
我的:
#include<stdio.h>
#include<unistd.h>
#include<dirent.h>
#include<string.h>
#include<stdlib.h>
#include<sys/stat.h>

#define MAX 256

long total;

int countLine(const char *filename);
int isCode(const char *filename);
void findAllDir(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;
}

int isCode(const char *filename)
{
      int length;

      length = strlen(filename);

      if (!istrcmp(filename + (length - 2),"c"))
      {
                return 1;
      }
      else
      {
                return 0;
      }
}

void findAllDirs(const char *path)
{
      DIR *dp;
      struct dirent *entry;
      struct stat statbuf;

      if((dp = opendir(path)) == NULL)
      {
                fprintf(stderr,"The path %s is wrong!\n",path);
                return;
      }

      chdir(path);
      while((entry = readdir(dp)) != NULL)
      {
                lstat(entry->d_name,&statbuf);

                if (!strcmp(".",entry->d_name)||!strcmp("..",entry->d_name))
                        continue;

                if(S_ISDIR(statbuf.st_mode))
                {
                        findeAllDirs(entry->d_name);
                }
                else
                {
                        if(isCode(entry->d_name))
                        {
                              total += countLines(entry->d_name);
                        }
                }
      }

      chdir("..");
      closedir(dp);
}

int main()
{
      char path = ".";
      printf("计算中…………\n");
      findAllDirs(path);
      printf("目前共写了%ld行代码!\n\n",total);
      return 0;
}


小甲鱼是这样的:
#include <stdio.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>

#define MAX 256

long total;

int countLines(const char *filename);
int isCode(const char *filename);
void findAllDirs(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;
}

int isCode(const char *filename)
{
      int length;

      length = strlen(filename);
      
      if (!strcmp(filename + (length - 2), ".c"))
      {
                return 1;
      }
      else
      {
                return 0;
      }
}

void findAllDirs(const char *path)
{
      DIR *dp;
      struct dirent *entry;
      struct stat statbuf;

      if ((dp = opendir(path)) == NULL)
      {
                fprintf(stderr, "The path %s is wrong!\n", path);
                return;
      }


做最好的自己520 发表于 2021-5-16 20:55:37

代码有些地方,抄错了 字母了 ,我看了一下有很多地方都抄错了,至于错在哪里我就不告诉你了,你自己 把代码拆开一段一段的检查,相信你会看出来的{:9_233:}

肖-肖 发表于 2021-5-16 20:59:26

本帖最后由 肖-肖 于 2021-5-16 21:01 编辑

我把你代码中得错误找出来了,在下边,报错信息也提示你函数没有定义准确所以会找不到

int countLine(const char *filename);
//应该是这样--》int countLines(const char *filename);
int isCode(const char *filename);
void findAllDir(const char *path);
//应该是这样--》void findAllDirs(const char *path);

int isCode(const char *filename)
{
      int length;

      length = strlen(filename);
      //下边这里你写错了:你写的是: if (!istrcmp(filename + (length - 2),"c"))
      if (!strcmp(filename + (length - 2), ".c"))
      {
                return 1;
      }
      else
      {
                return 0;
      }
}

向舒 发表于 2021-5-18 19:24:10

做最好的自己520 发表于 2021-5-16 20:55
代码有些地方,抄错了 字母了 ,我看了一下有很多地方都抄错了,至于错在哪里我就不告诉你了,你自己...

我看到了,实在是太粗心了,汗颜{:10_269:}

向舒 发表于 2021-5-18 19:25:55

肖-肖 发表于 2021-5-16 20:59
我把你代码中得错误找出来了,在下边,报错信息也提示你函数没有定义准确所以会找不到

谢谢,很有用,程序已经改过来了,终于知道了这个报错的意思,有收获

肖-肖 发表于 2021-5-18 20:09:43

向舒 发表于 2021-5-18 19:25
谢谢,很有用,程序已经改过来了,终于知道了这个报错的意思,有收获

嗯 问题解决了的话 设置下最佳答案吧
页: [1]
查看完整版本: 有看不懂的报错,求救