第一课C语言的练习题出现了一个报错
具体什么原因我也不清楚,这是我的代码#include <stdio.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#defom MAX 256
long total;
int countLines(const char *filename);
int isCode(const char*filename);
void findAllDirs(const char *path);
int countLines(const char *filename)
{
FtLE *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;
}
int isCode(const char *filename)
{
int length;
length = strlen(filename);
if (!strcmp(filename + (length - 2).".c"))
{
return 1;
}
else
{
return 0;
}
}
void findAllDirs(const char *path)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
if ((dp = opendir(path)) == NULL
{
fprintf(stderr,"The path %s is wrong!\n",path);
return;
}
chdir(path);
while ((entry = readdir(dp)) !=NULL)
{
lstat(entry->d_name,&statbuf);
if(!strcmp(".",entry->d_name)) || !strcmp("..", entry->name))
continue;
if (S_ISDIR(statbuf.st_mode))
{
findALLDirs(entry->d_name);
}
else
{
if (isCode(entry->d_name))
{
total += countLines(entry->d_name);
}
}
}
chdir("..");
closedir(dp);
}
int main()
{
char path = ".";
printf("计算中...\n");
findAllDirs(path);
printf("目前你总共写了 %d 行代码! \n\n", total);
return 0;\
} {:10_247:}关键是,我甚至复制练习题的代码,也是一样的事情,显示一个报错,报错原因是第二行 FtLE *fp;是FILE 最后的魁拔 发表于 2020-3-17 19:01
{:10_269:}我还打错了啊.....现在我改过来了,然而报错原因还是第二行的#include <unistd.h> #defom MAX 256
是define 最后的魁拔 发表于 2020-3-17 19:08
{:10_269:}这么多错,我去核对一下先 大家一起来找茬。。。 建议先放弃,有这时间好不如学习下一章的 你是不是Windows系统?
小甲鱼都标好了,这个是Linux/MacOS的,下面那个才是Windows的 qiuyouzhi 发表于 2020-3-17 19:20
你是不是Windows系统?
小甲鱼都标好了,这个是Linux/MacOS的,下面那个才是Windows的
我是用MIcrosoft visual C++弄的,有区别吗?这个方面我不是很懂 单一色 发表于 2020-3-17 19:31
我是用MIcrosoft visual C++弄的,有区别吗?这个方面我不是很懂
我说你的系统。。。
是不是Windows?
是的话你就用错代码了 qiuyouzhi 发表于 2020-3-17 19:38
我说你的系统。。。
是不是Windows?
是的话你就用错代码了
这样啊,那我应该用错代码了 单一色 发表于 2020-3-17 19:45
这样啊,那我应该用错代码了
嗯
你换成Windows试试 qiuyouzhi 发表于 2020-3-17 19:57
嗯
你换成Windows试试
大锅,我试了,windows了,没有问题了,看来我确实搞错了,然后我又冒出一个新的问题了,运行是成功了,然而显示出来的事情让我很伤心.....明明我已经敲了那么多....
计算中...
The path .Debug is wrong!
目前你总共敲了 0 行代码!
请按任意键继续. . .
单一色 发表于 2020-3-17 20:56
大锅,我试了,windows了,没有问题了,看来我确实搞错了,然后我又冒出一个新的问题了,运行是成功了, ...
先确认几个点:
1,后缀名没有错吧?
2,是直接复制的吧?
3,https://imgchr.com
程序运行图片放上来 qiuyouzhi 发表于 2020-3-17 21:00
先确认几个点:
1,后缀名没有错吧?
2,是直接复制的吧?
第一:我不是很理解,第二:我并没有复制,都是自己敲的,第三:我已经上传了(https://imgchr.com/i/8atkA1) qiuyouzhi 发表于 2020-3-17 21:00
先确认几个点:
1,后缀名没有错吧?
2,是直接复制的吧?
1:不是很明白意思。
2:这是我自己亲手敲的代码,不是复制的。
3:https://imgchr.com/i/8atkA1 qiuyouzhi 发表于 2020-3-17 21:00
先确认几个点:
1,后缀名没有错吧?
2,是直接复制的吧?
1:不是很清楚
2:都是自己敲的,并没有复制。
3:/i/8atkA1(因为直接发了两条都变成了审核,直接在你给我的网址后面加上这段就可以了) 你看看你那个输出total的printf函数有没有用%ld吧是L不是1不是i
页:
[1]