halemorning 发表于 2022-8-14 20:00:48

第一次上手敲(抄)脑溢血版

$ gcc count_lines.c -o count_lines
count_lines.c:16:1: 错误:程序中有游离的‘\357’
int countLines(const char *filename)
^
count_lines.c:16:1: 错误:程序中有游离的‘\274’
count_lines.c:16:1: 错误:程序中有游离的‘\210’
count_lines.c:16:18: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘const’
int countLines(const char *filename)
                  ^
count_lines.c:16:18: 错误:程序中有游离的‘\357’
count_lines.c:16:18: 错误:程序中有游离的‘\274’
count_lines.c:16:18: 错误:程序中有游离的‘\211’
count_lines.c: 在函数‘isCode’中:
count_lines.c:47:38: 警告:缺少结尾的 " 字符 [默认启用]
if (!strcmp(filename + (length - 2),"c))
                                    ^
count_lines.c:47:2: 错误:缺少结尾的 " 字符
if (!strcmp(filename + (length - 2),"c))
^
count_lines.c:48:2: 错误:expected expression before ‘{’ token
{
^
count_lines.c:55:1: 错误:expected ‘)’ before ‘}’ token
}
^
count_lines.c:55:1: 错误:expected expression before ‘}’ token
count_lines.c: 在函数‘findAllDirs’中:
count_lines.c:83:29: 错误:expected ‘)’ before ‘;’ token
    if (isCode(entry->d_name);
                           ^
count_lines.c:87:3: 错误:expected expression before ‘}’ token
   }
   ^
count_lines.c: 在函数‘main’中:
count_lines.c:98:2: 错误:程序中有游离的‘\357’
printf("计算中...\n");
^
count_lines.c:98:2: 错误:程序中有游离的‘\274’
count_lines.c:98:2: 错误:程序中有游离的‘\233’
count_lines.c:100:2: 错误:expected ‘;’ before ‘findAllDirs’
findAllDirs(path);
^

halemorning 发表于 2022-8-14 20:08:48

#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 pathp = ".";

        printf("计算中...\n");

        findAllDirs(path);

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

        return 0;
}

额外减小 发表于 2022-8-14 20:35:30

本帖最后由 额外减小 于 2022-8-14 20:55 编辑

#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 pathp = ".";

      printf("计算中...\n");

      findAllDirs(path);

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

      return 0;
}
第16行 括号要用英文() 不能用这个()
第47行,你自己看看小甲鱼的代码就知道了,      if (!strcmp(filename + (length - 2), ".c")),你的 "c 不是字符串,这个函数没法运行。
你把47行改对后,48行的"expected';'before '}' token"这个错误也就没了。
98行!!!你把分号;写成中文分号了;
96行 请问你定义的字符数组是pathp 还是path?
你先定义了pathp字符串,然后在后面又调用了不存在的path字符串

共勉 {:10_254:}

人造人 发表于 2022-8-14 20:43:09

本帖最后由 人造人 于 2022-8-14 20:47 编辑

halemorning 发表于 2022-8-14 20:08
#include
#include
#include


要一个字符一个字符的检查,非常非常非常非常非非常非常认真的检查(这里着重强调认真,用了n个非常,用n个非常来强调认真,可见认真是多么的重要)
要一个字符也不能错,初学者因为不认真抄错很正常
认真一点,一字符一个字符的检查
count_lines.c:16:1: 错误:程序中有游离的‘\274’
学着看报错信息,这个16表示16行,去第16行附近看看吧
其他报错也是一样的,这个位置的数字是行号

halemorning 发表于 2022-8-14 20:48:48

人造人 发表于 2022-8-14 20:43
要一个字符一个字符的检查,非常非常非常非常非非常非常认真的检查(这里着重强调认真,用了n个非常, ...

是的 打出来正要一点一点查错去

人造人 发表于 2022-8-14 20:50:33

halemorning 发表于 2022-8-14 20:48
是的 打出来正要一点一点查错去

那你先查呀,自己先很认真的解决自己遇到的问题,实在解决不了再让别人帮忙

halemorning 发表于 2022-8-14 21:33:51

总结:
16行括号使用了中文括号
28行 !=之间不能加空格?
47行   if (!strcmp(filename + (length - 2), ".c"))    后面按.c按到是小键盘的.   和左面键盘的.作用不一样
83行   if (isCode(entry->d_name))抄成了 if (isCode(entry->d_name);
96行   char path = ".";          抄成了 char pathp = ".";
98行使用了中文;

halemorning 发表于 2022-8-14 21:39:12

额外减小 发表于 2022-8-14 20:35
第16行 括号要用英文() 不能用这个()
第47行,你自己看看小甲鱼的代码就知道了,,你的 "c 不是字符串 ...

感谢指导!

halemorning 发表于 2022-8-14 21:39:47

人造人 发表于 2022-8-14 20:43
要一个字符一个字符的检查,非常非常非常非常非非常非常认真的检查(这里着重强调认真,用了n个非常, ...

感谢指导!
页: [1]
查看完整版本: 第一次上手敲(抄)脑溢血版