977594428 发表于 2020-1-25 18:58:36

id returned 1 exit status

求助出现这个怎么解决
error:id returned 1 exit status

zltzlt 发表于 2020-1-25 19:02:42

代码呢??

977594428 发表于 2020-1-25 19:04:49

zltzlt 发表于 2020-1-25 19:02
代码呢??

#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 findA11Codes(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 = _findfirsr(strcat(thePath, "/*"),&fa)) == -1L)
               {
                          fprint(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("目前你总共写了 %1d行代码! \n\n", total);
             system("pause");
             
             return 0;
}
哥麻烦帮忙看一下

zltzlt 发表于 2020-1-25 19:09:05

977594428 发表于 2020-1-25 19:04
#include
#include
#include


一看就有许多地方抄错了

zltzlt 发表于 2020-1-25 19:10:07

这样就没问题了:

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

977594428 发表于 2020-1-25 19:10:13

zltzlt 发表于 2020-1-25 19:09
一看就有许多地方抄错了

感谢,我在检查一遍{:5_106:}
页: [1]
查看完整版本: id returned 1 exit status