S1E2程序提问
本帖最后由 sulley 于 2020-9-4 14:34 编辑按照要求后修改的代码如下,即在显示要求的情况下往后面添加了—s(编译器用的是Vistual Stdio 2019),可是最终仍然没能够运行成功,请问需要怎么解决这个问题?还请大佬们多多指教啊,新手小白真的不懂,谢谢谢谢!!!
#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_s(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_s(thePath, path);
if ((handle = _findfirst(strcat_s(thePath, "/*.c"), &fa)) != -1L)
{
do
{
sprintf_s(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_s(thePath, path);
if ((handle = _findfirst(strcat_s(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_s(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;
} 本帖最后由 LuLD 于 2020-9-4 14:52 编辑
#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 findALLDirs(const char* path); //void findALLFiles()应该是void findALLDirs()
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;
}
//void findALLFiles()应该是void findALLDirs()
你加了 _s的 又给删掉了,不知道你要修改的思路 本帖最后由 LuLD 于 2020-9-4 14:43 编辑
呃,刚才图片没加载进来,你是用 c++ ?
如果是小甲鱼的 带你学C系列的, 后缀名 应该是.c 才对 LuLD 发表于 2020-9-4 14:37
你加了 _s的 又给删掉了,不知道你要修改的思路
您好,按照源代码仍然会显示第二章图片上的问题,仍然不能够正常编译,这也是我的疑惑所在,很好奇该怎么解决这个问题。 本帖最后由 LuLD 于 2020-9-4 14:57 编辑
sulley 发表于 2020-9-4 14:52
您好,按照源代码仍然会显示第二章图片上的问题,仍然不能够正常编译,这也是我的疑惑所在,很好奇该怎么 ...
按照你发的图片来看,文件的后缀名是 .cpp,这是c++ 的,
c 的后缀名应该是 .c
第十三行的函数声明 void findALLFiles()应该是void findALLDirs(),因为你下面用的都是这个 LuLD 发表于 2020-9-4 14:41
呃,刚才图片没加载进来,你是用 c++ ?
如果是小甲鱼的 带你学C系列的, 后缀名 应该是.c 才对
谢谢大佬在百忙之中的鼎力相助,不过我还存有疑问。(我用的编译器是Vistual Stdio 2019 编译器,我们老师说的这个编译器可以同时运行C语言以及C++语言的,不过偶尔会出现需要添加_s的问题,虽然我也不知道这其中的原理究竟何在,我想着添加了之后大部分代码还是能运行的,这可能是其中的一部分问题吧)
然后关于学习方面我是学的小甲鱼的《带你学C带你飞》系列的C语言,关于大佬的建议后缀名.c其实我还不大明白,恕我愚钝,还想请你给我深入讲解下具体是要在什么地方添加后缀名.c吗?谢谢谢谢诶!!! LuLD 发表于 2020-9-4 14:56
按照你发的图片来看,文件的后缀名是 .cpp,这是c++ 的,
c 的后缀名应该是 .c
嗷嗷,原来大佬是这个意思,嘻嘻,请等等我,我现在去试试修改下!谢谢您!!! LuLD 发表于 2020-9-4 14:41
呃,刚才图片没加载进来,你是用 c++ ?
如果是小甲鱼的 带你学C系列的, 后缀名 应该是.c 才对
大佬抱歉又来打扰您了,如图所示,我似乎没有找到.c模式,是我选错软件了吗,使用.h的头文件模式能够解决这个问题么?还是说真的需要更换一个软件了{:10_254:} LuLD 发表于 2020-9-4 14:56
按照你发的图片来看,文件的后缀名是 .cpp,这是c++ 的,
c 的后缀名应该是 .c
然后我想确认下十三行的代码真的是需要修改吗,因为我是按照小甲鱼老师的源代码来的 sulley 发表于 2020-9-4 15:07
大佬抱歉又来打扰您了,如图所示,我似乎没有找到.c模式,是我选错软件了吗,使用.h的头文件模式能够解决 ...
需要手动修改的 本帖最后由 LuLD 于 2020-9-4 15:21 编辑
sulley 发表于 2020-9-4 15:12
然后我想确认下十三行的代码真的是需要修改吗,因为我是按照小甲鱼老师的源代码来的
我看错了,我看成了linux 的了
sulley 发表于 2020-9-4 15:12
然后我想确认下十三行的代码真的是需要修改吗,因为我是按照小甲鱼老师的源代码来的
我的错,我的错,但是 我确定 小甲鱼的也写的有问题,如果把 main 函数 写在 声明的下一行,这个程序也会报错的,所以,这个声明肯定是要改成 void findALLDirs() LuLD 发表于 2020-9-4 15:14
我看错了,我看成了linux 的了
请大佬过目,按照您的要求修改之后仍旧不能正常运行,还想请您多多指教!{:10_254:}
#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 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;
}
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;
} LuLD 发表于 2020-9-4 15:24
我的错,我的错,但是 我确定 小甲鱼的也写的有问题,如果把 main 函数 写在 声明的下一行,这个程序也会 ...
嗯嗯是的,我认为大佬说的在理!!!因此后面的代码里我还是由所修改的 sulley 发表于 2020-9-4 15:27
请大佬过目,按照您的要求修改之后仍旧不能正常运行,还想请您多多指教!
#define _CRT_SECURE_NO_WARNINGS
把这个 添加到 程式 开头 LuLD 发表于 2020-9-4 15:24
我的错,我的错,但是 我确定 小甲鱼的也写的有问题,如果把 main 函数 写在 声明的下一行,这个程序也会 ...
小甲鱼的那个程序是没有错的,因为时常有朋友在这里问这首题,他们第问一次,我都要运行一次 sulley 发表于 2020-9-4 15:27
请大佬过目,按照您的要求修改之后仍旧不能正常运行,还想请您多多指教!
这个是网上大佬解释的意思,我的理解就是一个安全检查,添加上这行 就是 屏蔽掉这个检查 本帖最后由 LuLD 于 2020-9-4 15:40 编辑
风过无痕1989 发表于 2020-9-4 15:33
小甲鱼的那个程序是没有错的,因为时常有朋友在这里问这首题,他们第问一次,我都要运行一次
你把 主函数 放到上面试试,肯定会报错的,会报找不到这个函数的定义,
你运行的时候是直接在那边复制过来的吧,你修改一下,把主函数放到 子函数 上边运行
直接复制过 运行不报错,是因为 主函数在最下面,这个函数编译器找的到,所以才不会报错,
把主函数 提到 最上面,就会报错
本帖最后由 liuzhengyuan 于 2020-9-4 15:44 编辑
LuLD 发表于 2020-9-4 15:35
这个是网上大佬解释的意思,我的理解就是一个安全检查,添加上这行 就是 屏蔽掉这个检查
把 SDL 检查 关掉就行了
https://xxx.ilovefishc.com/album/202007/31/095400bbj25kbky4zxxrlk.png liuzhengyuan 发表于 2020-9-4 15:41
把 SDL 检查 关掉就行了
成了!真的真的谢谢您!您真的太太太太好了{:10_250:}
奥对了,一件很神奇的事情,在我吧13行的代码改成您的参考意见后也是能够正常运行的!!!
也就是说,void findALLFiles()&void findALLDirs()都是能够正常运行的,我就觉得很神奇,虽然我也不知道这其中的真正原理是什么,嘻嘻!!!开心,今天在您的耐心帮助下又长知识了,好人一生好运!!!
页:
[1]
2