第一个课后作业 编译不过
#include<io.h>#include<direct.h>
#include<stdlib.h>
#include<stdio.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;
} 我复制都编译不过{:5_100:} 只若敷衍 发表于 2020-5-18 21:43
我复制都编译不过
错误提示?
警告 C4806 “!=”: 不安全操作: 从类型“bool”提升到类型“int”的值不能等于给定的常量
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 19
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 40
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 41
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 45
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 59
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 60
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C4996 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication11 c:\users\ning mei\source\repos\consoleapplication11\consoleapplication11\consoleapplication11.cpp 72
只若敷衍 发表于 2020-5-18 21:48
警告 C4806 “!=”: 不安全操作: 从类型“bool”提升到类型“int”的值不能等于给定的常量
严重性 代 ...
换编辑器 老八秘制 发表于 2020-5-18 22:11
换编辑器
用的VS2017的 这个不好用吗{:5_99:} 只若敷衍 发表于 2020-5-18 22:15
用的VS2017的 这个不好用吗
换DevC++看可不可以 只若敷衍 发表于 2020-5-18 21:48
警告 C4806 “!=”: 不安全操作: 从类型“bool”提升到类型“int”的值不能等于给定的常量
严重性 代 ...
主要是这些函数有风险,VS 默认禁止使用。
如果真的要用的话,在代码第一行写上#define _CRT_SECURE_NO_WARNINGS 永恒的蓝色梦想 发表于 2020-5-18 22:28
主要是这些函数有风险,VS 默认禁止使用。
如果真的要用的话,在代码第一行写上
这样子啊 看样子大家好像都不怎么用VS 是因为限制比较多 麻烦吗? 只若敷衍 发表于 2020-5-18 22:36
这样子啊 看样子大家好像都不怎么用VS 是因为限制比较多 麻烦吗?
并不是,主要是DEVC++适合新手。
不过VS世界第一也不是吹出来的,它是确确实实的功能强大。
而且默认禁用的这些函数实际工程中也很少用到了。
顺便,满意给个最佳哦~{:10_297:} 永恒的蓝色梦想 发表于 2020-5-18 22:42
并不是,主要是DEVC++适合新手。
不过VS世界第一也不是吹出来的,它是确确实实的功能强大。
而且默认 ...
酱紫 谢谢咯~ 还有一个作为新手想问的问题。。这种解除限制的代码 你们是都已经背下来了吗。。。。 老八秘制 发表于 2020-5-18 22:18
换DevC++看可不可以
我在下载了~ 谢谢老八{:5_109:} 只若敷衍 发表于 2020-5-18 22:46
酱紫 谢谢咯~ 还有一个作为新手想问的问题。。这种解除限制的代码 你们是都已经背下来了吗。。。。
我平常用 C++ 的 iostream,不会出这种问题
页:
[1]