为什么第一次课后计算代码量的代码无法计算?
本帖最后由 小噗噗啊 于 2021-4-3 17:55 编辑答案最后的部分小甲鱼给的有,有Linux的,我是windows的,DEV那个,没法用。https://fishc.com.cn/forum.php?mod=viewthread&tid=66283&extra=page%3D1%26filter%3Dtypeid%26typeid%3D570 求解求解{: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 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;
} 放题目,放代码,鬼晓得第一课是啥 就是带你学C带你飞,那个课后作业计算代码量的代码,代码太多了,不知道能不能放上来 https://fishc.com.cn/forum.php?mod=viewthread&tid=66283&extra=page%3D1%26filter%3Dtypeid%26typeid%3D570 小噗噗啊 发表于 2021-4-2 09:35
就是带你学C带你飞,那个课后作业计算代码量的代码,代码太多了,不知道能不能放上来
问题是大多数人都不晓得什么什么飞,什么什么题
你不会以为你一说第几课,第几题,地球人都知道咋回事,甚至代码都能背诵下来吧 网址在上面,最后的小甲鱼给的有,有Linux的,我是windows的,DEV那个,没法用。https://fishc.com.cn/forum.php?mod=viewthread&tid=66283&extra=page%3D1%26filter%3Dtypeid%26typeid%3D570 wp231957 发表于 2021-4-2 09:32
放题目,放代码,鬼晓得第一课是啥
我把代码放上去了 来的晚了,楼主,那个代码需要单独放在一个文件夹下的,毕竟它是用来计算自己的代码量的(以我目前能力来看是这样)。还有,别搭理那个自以为是的王八蛋,它就是来怼你找优越感的,别被这种东西扰乱心情{:10_247:} 你的程序可以编译可以运行吧?
是不是运行结果是0行代码?
页:
[1]