黑铁V 发表于 2021-1-17 21:38:16

关于小甲鱼老师的第一个课后作业。。救救孩子

救救孩子,我把test里的内容从 i love FishC.com!改成了小甲鱼老师的课后作业,但是使用gcc编译的时候报错,有大佬清楚这是什么错误吗
需要我怎么操作才能正常
第一堂课后作业就是写出计算一共打了多少行的代码

风过无痕1989 发表于 2021-1-18 12:57:45

你复制我的代码再试试看
// 有些编译器对缩进有严格的要求,所以,请不要改变每一行前的空格!
// 如果程序文件是 *.cpp,则将第 50 行的 "/*.c" 直接改为 "/*.cpp"

#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)// 如果程序文件是 *.cpp,将此行的 "/*.c" 直接改为 "/*.cpp"
    {
      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("目前您总共写了 %1d 行代码! \n\n", total);
    system("pause");
      
    return 0;
}

黑铁V 发表于 2021-1-18 20:35:01

风过无痕1989 发表于 2021-1-18 12:57
你复制我的代码再试试看

大佬,我请教个问题,我是直接从小甲鱼老师那里下载的编译器+虚拟机,这个该如何复制进入虚拟机里面。。还有如何在虚拟机内打中文。。

风过无痕1989 发表于 2021-1-18 22:10:24

黑铁V 发表于 2021-1-18 20:35
大佬,我请教个问题,我是直接从小甲鱼老师那里下载的编译器+虚拟机,这个该如何复制进入虚拟机里面。。 ...

没用过虚拟机,不知道怎么回答你

李京 发表于 2021-1-18 22:17:06

黑铁V 发表于 2021-1-18 20:35
大佬,我请教个问题,我是直接从小甲鱼老师那里下载的编译器+虚拟机,这个该如何复制进入虚拟机里面。。 ...

自己电脑上怎么复制进虚拟机我不知道,但是中文按住ctrl+空格就行了
而且你的代码肯定是没有写对,旁边写了错误在多少行,你再去看看

黑铁V 发表于 2021-1-19 16:05:48

李京 发表于 2021-1-18 22:17
自己电脑上怎么复制进虚拟机我不知道,但是中文按住ctrl+空格就行了
而且你的代码肯定是没有写对,旁边 ...

好的,谢谢,我去试试

钟怡清 发表于 2021-2-1 00:59:21

风过无痕1989 发表于 2021-1-18 12:57
你复制我的代码再试试看

这些代码都要自己记清楚理解明白吗?{:10_302:}
页: [1]
查看完整版本: 关于小甲鱼老师的第一个课后作业。。救救孩子