《带你学c带你飞》第一季第二节课课后作业这一行哪有问题嘛?
43 struct_finddata_t fa;语法检查总是报错,求大佬解答 有空格的
学编程一定要认真,抄都能抄错,别人是真的没办法
人造人 发表于 2021-8-15 22:18
有空格的
学编程一定要认真,抄都能抄错,别人是真的没办法
奥,谢谢 人造人 发表于 2021-8-15 22:18
有空格的
学编程一定要认真,抄都能抄错,别人是真的没办法
大佬,请问编译时出现 ld returned 1 exit status怎么解决呀... 看我表演了 发表于 2021-8-15 22:44
大佬,请问编译时出现 ld returned 1 exit status怎么解决呀...
为什么不发代码?
人造人 发表于 2021-8-15 22:48
为什么不发代码?
抱歉抱歉,菜鸟不太熟悉。。。
#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 (_finenext(handle,&fa)==0);
_findclose(handle);
}
int main()
{
char path=".";
printf("计算中...\n");
findallcodes(path);
findALLDirs(path);
printf("目前你总共写了%|d行代码!\n\n",total);
system("pause");
return 0;
}
看我表演了 发表于 2021-8-15 23:32
抱歉抱歉,菜鸟不太熟悉。。。
#include
#include
我这边没有 vs,发一下你的报错信息
看我表演了 发表于 2021-8-15 23:32
抱歉抱歉,菜鸟不太熟悉。。。
#include
#include
请认真一点
findallcodes
findAllcodes _finenext
_findnext
请认真一点,自己不认真抄错单词
人造人 发表于 2021-8-15 23:53
_finenext
_findnext
请认真一点,自己不认真抄错单词
奥谢谢大佬,抱歉了 本帖最后由 看我表演了 于 2021-8-16 10:40 编辑
人造人 发表于 2021-8-15 23:50
我这边没有 vs,发一下你的报错信息
奥我又重新检查了几遍,把大小写改了和添加空格以后问题解决了,谢谢大佬帮我解答和看代码
万分感谢{:10_298:} {:10_298:} {:10_298:}
还有个问题...编程时候空格是为了美观还是硬性要求呢?如果是必须的,那在哪些情况下需要呢? 看我表演了 发表于 2021-8-16 10:11
奥我又重新检查了几遍,把大小写改了和添加空格以后问题解决了,谢谢大佬帮我解答和看代码
万 ...
一开始就完全照着教程抄,教程中有空格的地方你也要有,教程中没有空格的地方你也不要有
等你学的知识多了以后,你自然可以知道那些地方必须有,那些地方可有可无了
人造人 发表于 2021-8-16 12:56
一开始就完全照着教程抄,教程中有空格的地方你也要有,教程中没有空格的地方你也不要有
等你学的知识多 ...
知道了,谢谢大佬
页:
[1]