关于小甲鱼学c系列的第一个作业问题
大佬们,带你学c带你飞的第一份课后作业,那个一大串代码我打完了,但是到了运行的时候一直说findALLDirs没有声明,请问要如何处理。(检查了好几遍了跟小甲鱼上面的一样,就这里会出问题,但是删除这一段又失去功能了)用的是Dev-c++。 谁都不是神仙,谁知道你在说啥啊,简直就是天文 检查了好几遍了跟小甲鱼上面的一样肯定不一样,一样为什么不能用?
再非常认真的多检查几遍,一个字符一个字符的检查
在检查几遍后还是检查不出来的话,把代码发出来,我们帮你检查
本帖最后由 jackz007 于 2021-9-23 16:46 编辑
C语言的函数、变量在使用前必须要进行定义或声明,你这种情况应该是函数 findALLDirs() 在调用前没有提前定义或声明。 看一看"L"的大小写。我也是检查了好多遍,最后发现是大小写问题。 代码发出来,我们来查
希望·别秃 发表于 2021-9-23 21:48
代码发出来,我们来查
#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;
} #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;
}
昨天发不出来图片,今天才想起来发代码,抱歉了各位,我实在是检查不出来,望各位指正。 l的大小写吧,我第一次也是这样,睡了一觉,第二天在看发现了;统一改成大写或小写,应该就可以编译了吧。 尘漠中沉没 发表于 2021-9-24 07:54
#include
#include
#include
方法名写的是findAllDirs,是小写的l。调用写的是findALLDirs,是大写的L。主函数也是大写。一直就可以了。{:10_266:}我前面就说了大小写,你可以改一下试试对不对。
页:
[1]