新手抄代码,最后编译没有出现正确答案,请大侠指点
C的作业题一,抄的代码,编译完成,但是debug输出是:Can not open the file : main.c
The path .bin is wrong!
The path .obj is wrong!
目前你总写了0行代码! 谁知道你都是咋弄的 我也是,不管是自己抄的还是复制的,都是0行代码。 我复制教学版的代码是ok的,估计还是程序哪里有问题 我抄下来可以用的
上代码
#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;
} xtz18602912468 发表于 2019-5-10 17:53
#include
#include
#include
我复制你的试了一下,完全没有问题
可能是你输入代码的时候没有对齐或者其中有中文状态的输入 本帖最后由 dt3tc 于 2019-5-13 19:38 编辑
你要确保在安全软件中赋予IDE的编辑器和编译器以及项目可执行文件对源代码所在目录及其中文件的读写和执行权限。
另外,编译前要先保存对源代码的变更。 好的,谢谢,的确是这个问题 第66行报错 strcpy(thePath, path);
'thePath' undeclared (first use in this function).INotel each undeclared identifier is reported only once for each function it appears in
[错误]'thePath'未声明(首次在此函数中使用)。每个未声明的标识符只对它出现的每个函数报告一次
页:
[1]