TrampTree 发表于 2020-2-20 19:54:10

做课后作业出现的问题

这是啥情况啊!!
                         C:\Users\Administrator.ZX-201610151054\Desktop\collect2.exe        ld returned 1 exit status

TrampTree 发表于 2020-2-20 19:54:42

在线急等

{:5_107:}

zltzlt 发表于 2020-2-20 19:56:01

把你的代码发上来

qiuyouzhi 发表于 2020-2-20 19:57:13

代码代码!!!

dlnb526 发表于 2020-2-20 20:02:53

1 编译器正在执行刚刚的程序还没关;小黑框还在。
解决措施:关闭就好。
2定义的函数和调用的函数名字不一样,也会造成产生这种错误

希望能帮到你

一个账号 发表于 2020-2-20 20:07:06

把之前运行的那个程序关掉

TrampTree 发表于 2020-2-20 20:34:14


#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("计33娘正在计算中^_^...\n");

          findAllCodes(path);
          findAllDirs(path);

                printf("目前你总共写了 %1d 行代码!\n\n", total);
                system("pause");

                return 0;
}

TrampTree 发表于 2020-2-20 20:35:50

本帖最后由 TrampTree 于 2020-2-20 20:48 编辑

那个countLines的L写成了l(粗心)
{:10_277:}

Acacia 发表于 2020-2-22 03:32:19

{:10_247:}
页: [1]
查看完整版本: 做课后作业出现的问题