顺罗 发表于 2025-3-24 10:16:49

#include <stdio.h>
#include <direct.h>
#include <io.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_s(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_s(thePath, path);
        if ((handle = _findfirst(strcat_s(thePath, "/*.c"), &fa)) != -1L)
        {
                do
                {
                        sprintf_s(target, "%s%s", path, fa.name);
                        total += countLines(target);
                } while (_findnext(handle, &fa) == 0);
        }

        _findclose(handle);
}

void findALLFiles(const char* path)
{
        struct _finddata_t fa;
        long handle;
        char thePath;

        strcpy_s(thePath, path);
        if ((handle = _findfirst(strcat_s(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_s(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;
}

菜鸟一枚呀 发表于 2025-3-24 21:20:07

查看参考答案

njathwbll 发表于 2025-3-24 22:33:42

.

鱼飞飞... 发表于 2025-3-25 15:57:21

1

HCX520WLL 发表于 2025-3-25 19:02:57

{:5_103:}

忘川流 发表于 2025-3-26 09:34:36

{:10_266:}

戴浩天 发表于 2025-3-26 14:22:03

1

老笨比了 发表于 2025-3-26 15:16:58

C:\Users\yysun\Desktop\01.png

小吃鱼 发表于 2025-3-26 18:01:00

答案

垒垒QAQ 发表于 2025-3-26 22:02:30

1,只能读懂0和1
2,机器码
3,编码
4,是否需要解释器
5,不能
6,
7,查表

落昼 发表于 2025-3-27 19:40:47

0、只懂得二进制的0和1
1、机器语言
2、编译
3、是否可以直接执行
4、不行,对单片机来说,不同机器上的C语言编译程序80%的代码是公共的
5、将源代码转换成中间代码,然后发送给解释器,由解释器逐句翻译给CPU来执行
6、查表
7、

kai_2025 发表于 2025-3-28 15:23:34

查看参考答案

crsx 发表于 2025-3-28 16:26:20

对对

alyson15646 发表于 2025-3-28 17:07:48

,,

胡萝卜心儿 发表于 2025-3-29 10:15:17

答案

Stankxey 发表于 2025-3-29 17:07:49

hao

YoKing 发表于 2025-3-29 20:29:27

1

CHE1905 发表于 2025-3-29 21:25:22

1

南汐.h 发表于 2025-3-30 15:37:32

1

@Excelsior 发表于 2025-3-30 21:55:12

桌面
页: 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 [2097] 2098 2099 2100 2101 2102 2103 2104 2105 2106
查看完整版本: S1E2:第一个程序 | 课后测试题及答案