无聊的数学家 发表于 2018-3-19 07:42:04

各位大佬求帮忙啦。Expected ubqualified-id before,是咋么回事呀。本人新手,3q啦

#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;
       
        strcoy(thePath, path);
        if(handle = _findfirst(strcat(thwPath,"/*.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;
       
        strcoy(thePath, path);
        if(handle = findfirst(chrcat(thePath,"/*", &fa)) == -1L)
        {
                fprintf(stderr, "the path %s is wrong!\n",path);
                return;
        }
       
        do
        {
                if(!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                               
                if(fa.sttrib ==_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;
}

ba21 发表于 2018-3-19 11:14:15

你这是哪里抄来的代码???

建议你还是去一行一行的仔细对比一下。

无聊的数学家 发表于 2018-3-19 13:06:28

ba21 发表于 2018-3-19 11:14
你这是哪里抄来的代码???

建议你还是去一行一行的仔细对比一下。

就是 带你学c带你飞第一季第一课里面的动动手。比对过了一摸一样,结果还是不行

ba21 发表于 2018-3-19 17:12:21

看下 注释; 你何不直接复制小甲鱼的代码得了。这么明显尽然对比不出。
#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; // struct_finddata_t
      long handle;
      char thePath, target;
      
      strcpy(thePath, path); // strcoy
      if((handle = _findfirst(strcat(thePath,"/*.c"),&fa))!=-1L) // handle = findfirst(chrcat(thePath,"/*", &fa))
      {
                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; // struct finddata_t
      long handle;
      char thePath;
      
      strcpy(thePath, path); // strcoy
      if((handle = _findfirst(strcat(thePath,"/*"), &fa)) == -1L) // handle = findfirst(chrcat(thePath,"/*", &fa))
      {
                fprintf(stderr, "the path %s is wrong!\n",path);
                return;
      }
      
      do
      {
                if(!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                                 
                if(fa.attrib ==_A_SUBDIR) // sttrib
                {
                        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;
}
页: [1]
查看完整版本: 各位大佬求帮忙啦。Expected ubqualified-id before,是咋么回事呀。本人新手,3q啦