|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
#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); 12行
void findAllCodes(const char *path);
void findALLFile (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 thepathp[MAX], target[MAX];
strcpy(thePath, path); 47行
if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
{
do
{
sprintf(target, "%s/%s", path, fa.name);
total += countLines(target); 53行
}while (_findnext(handle, &fa) == 0);
}
_findclose(handle);
}
void findAllDirs(const char *path)
{
struct _finddata_t fa;
long handle;
char thePath[MAX];
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[MAX] = ".";
printf("计算中...\n");
findAllCodes(path);
findAllDirs(path);
printf("目前你总共写了 %1d 行代码! \n\n", total); 98行
system("pause");
return 0;
}
说是12行标识符有问题
47 53 98是undeclared??我对比鱼老师的那个课后作业代码没什么不一样啊
本帖最后由 风过无痕1989 于 2020-9-4 12:29 编辑
第9行 long total 语句后面缺少分号
第44行 char thepathp[MAX],target[MAX]; 是 thepath[MAX],而不是 thepathp[MAX],编译时出现 thepath 没有定义的错误
第98行的错误,是你将控制符 l (long 的第一个字母) 写成了数字 1 了
你在代码语句后标注多少行是可以的,不过得加上双斜杠 // 或者 /* */
其他的一些告警,可视程序运行情况再酌情处理,没有大的问题也就不必处理了
刚才我复制你的程序,出现20多处错误,就是因为你没有加双斜杠和有些逗号是中文的
其他的错误,我查查看
|
-
-
|