路瑶kino 发表于 2020-2-14 21:29:06

关于带你学c带你飞的第一节课内容


用的mac系统
代码所有都打对了 xcode显示是

计算中...
目前你总共写了 0 行代码!

Program ended with exit code: 0

其中第45行代码的报错是 Implicit conversion loses integer precision: 'unsigned long' to 'int'

不知道什么原因,求解答!{:5_104:}

wp231957 发表于 2020-2-14 21:40:16

呵呵,提问题不发代码
光整一句,代码都对,既然都对,还有问的必要吗

zltzlt 发表于 2020-2-14 21:50:00

你确定打对了?打对了会没错吗?

不二如是 发表于 2020-2-14 23:01:30

把代码发上来

路瑶kino 发表于 2020-2-15 00:43:52

对不起各位大神,不知道求助规矩给各位添麻烦了,附上代码

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

      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))
                {
                        findAllDirs(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;
}




然后这个是界面显示的结果:
http://m.qpic.cn/psc?/V139IyYj4K70jp/A845Uywr4tMMRU*7oNCSQ7A6UkN9O5TuVw6nzMuLmjvXNhtqJX1*n*GZId5yEc8q80xFhfA4qUIhcL3Y5FO5ZxteLz94y3RaiGlxFe9lV.E!/b&bo=oAU4BAAAAAARB6k!&rf=viewer_4

不知道能不能带图{:10_266:}再次表达歉意

路瑶kino 发表于 2020-2-15 00:44:50

wp231957 发表于 2020-2-14 21:40
呵呵,提问题不发代码
光整一句,代码都对,既然都对,还有问的必要吗

对不起给大神添麻烦了,小的这是不懂规矩作死{:10_266:}已经附上代码和界面,希望大神解答

路瑶kino 发表于 2020-2-15 00:45:59

zltzlt 发表于 2020-2-14 21:50
你确定打对了?打对了会没错吗?

对不起给大神添麻烦了,小的这是逻辑突然下线{:10_266:}已经附上代码和界面,希望大神解答

路瑶kino 发表于 2020-2-15 00:46:47

不二如是 发表于 2020-2-14 23:01
把代码发上来

已经附上代码和界面,给大神添麻烦了{:10_297:}
页: [1]
查看完整版本: 关于带你学c带你飞的第一节课内容