我这编译器错误提示是什么意思啊
照着小甲鱼老师第二课课后题抄上去并要求运行成功,代码我逐字检查了好几遍没有错啊,可为什么还是运行不了{:10_266:} 本帖最后由 青出于蓝 于 2022-7-26 15:57 编辑
二次编译,把上一次的编译结果(也就是exe)关掉再编译 青出于蓝 发表于 2022-7-26 15:52
二次编译,把上一次的编译结果(也就是exe)关掉再编译
我就运行了这一个DevC编译器啊,其他程序没有啊,进任务管理器也没发现有 青出于蓝 发表于 2022-7-26 15:52
二次编译,把上一次的编译结果(也就是exe)关掉再编译
我电脑都重启了,还是运行不了,有这个错误提示 把collect2.exe删掉试试看 青出于蓝 发表于 2022-7-26 16:02
把collect2.exe删掉试试看
这个不能删除,是编译器的文件,删除了就无法编译任何c程序了 竹逸 发表于 2022-7-26 16:07
这个不能删除,是编译器的文件,删除了就无法编译任何c程序了
贴代码,我怀疑你还是抄错了
你不贴代码别人怎么帮你?
我有点怀疑你抄错了 看报错说找不到 'findAllDirs' 这个名字
为什么会找不到呢?
所以我怀疑你还是抄错了
#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;
} 人造人 发表于 2022-7-26 16:09
贴代码,我怀疑你还是抄错了
代码贴下面了 临时号 发表于 2022-7-26 16:12
我有点怀疑你抄错了
代码贴下面了 本帖最后由 临时号 于 2022-7-26 16:22 编辑
竹逸 发表于 2022-7-26 16:18
代码贴下面了
你抄错了,看我的注释(第59行)
#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) // 这里你抄错了,findALLDirs改为findAllDirs
{
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;
} 临时号 发表于 2022-7-26 16:21
你抄错了,看我的注释(第59行)
小甲鱼老师的也错了,我都是照抄的{:10_247:} 竹逸 发表于 2022-7-26 17:07
小甲鱼老师的也错了,我都是照抄的
是吗?
你直接复制粘贴试试看
竹逸 发表于 2022-7-26 17:07
小甲鱼老师的也错了,我都是照抄的
小甲鱼老师前面用的命名是findALLDirs,后面用的也是findALLDirs,而你前面的函数定义用的是findALLDirs,后面调用函数是却用的是findAllDirs
不信你去看小甲鱼老师代码的82行和96行,再看看你的83行和96行 临时号 发表于 2022-7-26 17:14
小甲鱼老师前面用的命名是findALLDirs,后面用的也是findALLDirs,而你前面的函数定义用的是findALLDirs,后 ...
原来是我后面那两个抄错了{:10_250:}
页:
[1]