《带你学c带你飞》第二集的代码我跑不了
本帖最后由 KKlein 于 2023-3-15 17:18 编辑我Linux系统跑那个第一个课后作业的代码一直有问题,有没有大佬能帮帮忙 不能发图片吗? 提升这个
/homework.c:行10:long:未找到命令
homework.c:行12:未预期的符号‘(! 附近有语法错误
homework.c:行12:int countLines(const char *filename);
踢一脚 homework.c:行10:long:未找到命令 你是不是多写了一个 “:”
homework.c:行12:未预期的符号‘(! 附近有语法错误 是不是用了中文符号?
homework.c:行12:int countLines(const char *filename);
两手空空儿 发表于 2023-3-14 18:03
homework.c:行10:long:未找到命令 你是不是多写了一个 “:”
homework.c:行12:未预期的符号‘ ...
long total;
int countLines(const char *filenam);
这是我的源代码,符号问题没有我确认了,前后括号起互联了,long我也没有多加:
这是上面这一段源代码对应的报错提示
./homework.c:行10: long: 未找到命令
./homework.c:行12: 未预期的符号 `(' 附近有语法错误
./homework.c:行12: `int countLines(const char *filename);'
KKlein 发表于 2023-3-14 18:12
long total;
int countLines(const char *filenam);
是不是头文件没写对啊
#include<stdio.h> homeskating 发表于 2023-3-14 22:17
是不是头文件没写对啊
我对照了一下源代码,我应该没写错,你这段代码是少了一个空格吧?还有这代码咋发,我想把我的代码贴上来不会贴 回贴的时候有一个 “<>”图标,点一下这个,把代码贴进去就行了 把所有代码贴出来看看吧 #include <stdio.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#define MAX 256
long total;
int countLines(const char *filename);
int isCode(const char *filename);
void findAllDirs(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;
}
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->d_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("目前你总共写了 %ld 行代码! \n\n", total);
return 0;
}
Ian_Li 发表于 2023-3-16 22:28
把所有代码贴出来看看吧
哥们我贴代码了,有空来帮我瞅瞅 KKlein 发表于 2023-3-16 22:41
哥们我贴代码了,有空来帮我瞅瞅
额,,没看出问题.
我拷贝到我这里跑了下 可以正常用,不是代码问题.
会不会是gcc版本,或者文件编码格式之类的问题 搞定了,我执行文件的步骤错了。写完源代码后用gcc编译后应该执行编译后的文件,我执行了编译前的文件。
{:10_266:} Ian_Li 发表于 2023-3-16 22:48
额,,没看出问题.
我拷贝到我这里跑了下 可以正常用,不是代码问题.
会不会是gcc版本,或者文件编码格式之 ...
搞定了,我执行文件的步骤错了。写完源代码后用gcc编译后应该执行编译后的文件,我执行了编译前的文件。
{:5_104:} KKlein 发表于 2023-3-16 23:24
搞定了,我执行文件的步骤错了。写完源代码后用gcc编译后应该执行编译后的文件,我执行了编译前的文件 ...
哈哈哈,这种错误犯过一次 以后就会永远记得了
页:
[1]