harold0111 发表于 2025-5-27 15:11:05

6666

Ink.墨水 发表于 2025-5-27 17:18:56

#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;
}

城郭残垣 发表于 2025-5-28 23:15:34

查看参考答案

lisihan01 发表于 2025-5-30 10:44:16

11

tiaotiaohuajie 发表于 2025-5-30 19:00:27

看一眼

傲然子 发表于 2025-6-2 16:42:25

来对对答案

tomjack1 发表于 2025-6-4 16:45:53

111

kafeishuaixxx 发表于 2025-6-5 22:54:53

1

luoil 发表于 2025-6-8 11:07:03

完成!

路过的白小白 发表于 2025-6-8 23:34:38

1.计算机只能识别二进制
2.机器语言,机器码
3.编译效率更高且泛用性强
4.可以
5.将代码转换成一种方式的东西,然后用机器翻译实现
6.每一段符号对应一个字母从而翻译出来
7.亲们陈迪认识发动进攻

JerryJia 发表于 2025-6-9 16:03:40

1

白蛋蛋 发表于 2025-6-9 18:56:37

1

wht95 发表于 2025-6-11 10:48:18

RE: S1E2:第一个程序 | 课后测试题及答案 [修改]

QsunQ 发表于 2025-6-11 12:57:38

1

zcj52002 发表于 2025-6-11 14:15:02

cpu只能执行0和1组成的代码

zcj52002 发表于 2025-6-11 15:27:30

C:\Users\33365\Pictures\Screenshots
为什么运行之后没有像你好世界一样弹出窗口,而是第一行代码标红,复制代码也是这样

LeeLeeLeeL 发表于 2025-6-12 03:11:33

看看

干饭了 发表于 2025-6-14 10:38:38

1

小罗非鱼 发表于 2025-6-14 11:50:30

0.计算机只能理解二进制0和1,没有自主识别能力。
1.机器语言
2.编译
3.程序执行前的翻译方式不同
4.不能
5.中间代码+平台专属解释器。牺牲效率换取执行效率和跨平台便利性。
6.点划信号的时间编码规则实现信息传输。
7.qinmen
chend
irenc
hifan
shif
adoag
jingo
ng

小罗非鱼 发表于 2025-6-14 14:26:22

11
页: 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 [2103] 2104 2105 2106 2107 2108 2109 2110 2111 2112
查看完整版本: S1E2:第一个程序 | 课后测试题及答案