小白初学求助
本帖最后由 小五的主人 于 2019-11-25 00:10 编辑本人小白,刚用了vc++6.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;
} 这就是 “山寨” 和 ”品牌” 的区别,照葫芦画瓢,难免!
难道楼主只是想吐槽一下小甲鱼的”不是”? 这位鱼友我没有吐槽的意思,我以为是vc++6.0不支持,毕竟我刚接触这个东西,谢谢你的解答 小五的主人 发表于 2019-11-24 23:17
这位鱼友我没有吐槽的意思,我以为是vc++6.0不支持,毕竟我刚接触这个东西,谢谢你的解答
既然不是吐槽,为什么不贴代码,难道要人求你吗? jackz007 发表于 2019-11-24 23:32
既然不是吐槽,为什么不贴代码,难道要人求你吗?
谢谢你的建议
页:
[1]